Skip to content

Commit cdb9123

Browse files
committed
update main view layout; add chart
1 parent d23cbb6 commit cdb9123

File tree

3 files changed

+267
-353
lines changed

3 files changed

+267
-353
lines changed

App/Utils/finance.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ exports.getStock = function(opts, type) {
3232
.replace('{startDate}', opts.startDate)
3333
.replace('{endDate}', opts.endDate);
3434

35-
return fetch(defs.baseURL + query + (defs.suffixURL[type] || ''));
35+
var url = defs.baseURL + query + (defs.suffixURL[type] || '');
36+
console.log(url);
37+
return fetch(url);
3638
};
3739

3840
exports.properties = [

0 commit comments

Comments
 (0)