Browse Source

remove onDatesProcessed which only ever called build

pull/797/head
Joe Germuska 10 years ago
parent
commit
8c70308e72
  1. 7
      source/js/VMM.Timeline.js

7
source/js/VMM.Timeline.js

@ -267,10 +267,6 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
}; };
function onDatesProcessed() {
build();
}
function reSize() { function reSize() {
updateSize(); updateSize();
@ -553,6 +549,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
}; };
// BUILD DATE OBJECTS // BUILD DATE OBJECTS
// called from onDataReady, passes to function build
function buildDates() { function buildDates() {
_dates = []; _dates = [];
@ -695,7 +692,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
}); });
} }
onDatesProcessed(); build();
} }
}; };

Loading…
Cancel
Save