Browse Source

remove check. it was in error, and even if it can be fixed, might have unexpected effects

pull/797/head
Joe Germuska 9 years ago
parent
commit
68eed00e04
  1. 4
      source/js/VMM.Timeline.js

4
source/js/VMM.Timeline.js

@ -473,10 +473,6 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
/* BUILD DISPLAY /* BUILD DISPLAY
================================================== */ ================================================== */
function build() { function build() {
if (!(data && data.length && data.length > 0)) {
showMessege(null, "Error reading data.");
return;
}
// START AT SLIDE // START AT SLIDE
if (parseInt(config.start_at_slide) > 0 && config.current_slide == 0) { if (parseInt(config.start_at_slide) > 0 && config.current_slide == 0) {
config.current_slide = parseInt(config.start_at_slide); config.current_slide = parseInt(config.start_at_slide);

Loading…
Cancel
Save