- download usecase

- select all or no modules
- better reset for offline usecase
- preset loader for offline usecase
This commit is contained in:
Sublunar Space 2019-01-02 22:39:51 +01:00
parent 08a6d31d32
commit 5c624df96f
2 changed files with 124 additions and 85 deletions

View file

@ -263,7 +263,8 @@ SL.Calendar = (function() {
clearTimeout(timeout);
$('#caption .stoke').empty();
if ( $("body").attr("use") == "download" )
SL.Calendar.download( $("#grid").html(), fname, "skip", "html", "text/html; charset=utf-8");
SL.Calendar.download( $("#grid").html(), "grid.html", "skip", "html", "text/html; charset=utf-8");
SL.Calendar.download(Hours.moments, "ephemeris");
}
}
@ -384,6 +385,9 @@ SL.Calendar = (function() {
modal(plugin, definitions);
}
});
if ( $("body").attr("use") == "download" )
SL.Calendar.download( $("#filterList").html(), "filtermenu.html", "skip", "html", "text/html; charset=utf-8");
SL.Calendar.download( $("#modals").html(), "modals.html", "skip", "html", "text/html; charset=utf-8");
}
/**
@ -518,6 +522,20 @@ SL.Calendar = (function() {
extend(m, eval('module_'+m));
});
$('[data-toggle="tooltip"]').tooltip();
if ( $("body").attr("use") == "offline" ) {
$('#caption .stoke').html("loading preset...please wait.");
$.get("presets/filtermenu.html").done(function(html) {$("#filterList").append(html);});
$.get("presets/modals.html").done(function(html) {$("#modals").append(html);});
$.get("presets/grid.html").done(function(html) {
$("#grid").append(html);
$('#caption .stoke').empty();
$('#moduleSelect input:checkbox').prop('checked', true);
$('.planetaryhour').on('click', SL.Calendar.hourInfo);
});
$.getJSON("presets/ephemeris.json", function(json) {
Hours.moments = json.query;
});
}
}
/**