mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-09 11:34:24 +08:00
making it work with slashes
This commit is contained in:
@@ -6,7 +6,7 @@ angular.module("sideBySide").factory "fetch",
|
||||
# @param base [String] Path to config file directory
|
||||
# @return [Object] Promises and config data
|
||||
(base) ->
|
||||
file = base + 'config.json'
|
||||
file = window.location.href.split('#')[0].replace(/\/$/, '') + '/config.json'
|
||||
$http.get(file).then (config) ->
|
||||
if typeof config.data != "object"
|
||||
throw "Config file " + file + " doesn't contain data."
|
||||
@@ -15,7 +15,7 @@ angular.module("sideBySide").factory "fetch",
|
||||
throw "Config doesn't contain a list of files."
|
||||
|
||||
promises = config.data.files.map (poem) ->
|
||||
$http.get(base + poem).then (response) ->
|
||||
$http.get(window.location.href.split('#')[0].replace(/\/$/, '') + '/' + poem).then (response) ->
|
||||
readerFactory(poem) response.data
|
||||
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user