Add prompt on launch and checkbox

This commit is contained in:
gconsidine
2017-06-09 17:39:40 -04:00
parent 2b01c24dce
commit 2bd11f948a
11 changed files with 102 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ function httpGet (resource) {
return $q.resolve();
} else if (resource) {
req.url = `${this.path}/${resource}`;
req.url = `${this.path}${resource}/`;
}
return $http(req)
@@ -62,7 +62,7 @@ function httpOptions (resource) {
};
if (resource) {
req.url = `${this.path}/${resource}`;
req.url = `${this.path}${resource}/`;
}
return $http(req)