Browse Source

Proper assertion of worksheet param not being supplied

pull/300/head
Fredrik Wollsén 12 years ago
parent
commit
f1e488da8e
  1. 2
      compiled/js/timeline-min.js
  2. 2
      compiled/js/timeline.js
  3. 2
      source/js/VMM.Timeline.DataObj.js

2
compiled/js/timeline-min.js vendored

File diff suppressed because one or more lines are too long

2
compiled/js/timeline.js

@ -9267,7 +9267,7 @@ if (typeof VMM.Timeline !== 'undefined' && typeof VMM.Timeline.DataObj == 'undef
key = VMM.Util.getUrlVars(raw)["key"];
worksheet = VMM.Util.getUrlVars(raw)["worksheet"];
if (worksheet == "") worksheet = "od6";
if (typeof worksheet == "undefined") worksheet = "od6";
url = "https://spreadsheets.google.com/feeds/list/" + key + "/" + worksheet + "/public/values?alt=json";

2
source/js/VMM.Timeline.DataObj.js

@ -170,7 +170,7 @@ if (typeof VMM.Timeline !== 'undefined' && typeof VMM.Timeline.DataObj == 'undef
key = VMM.Util.getUrlVars(raw)["key"];
worksheet = VMM.Util.getUrlVars(raw)["worksheet"];
if (worksheet == "") worksheet = "od6";
if (typeof worksheet == "undefined") worksheet = "od6";
url = "https://spreadsheets.google.com/feeds/list/" + key + "/" + worksheet + "/public/values?alt=json";

Loading…
Cancel
Save