jellyfish-web/dashboard-ui/scripts/aboutpage.js

12 lines
283 B
JavaScript
Raw Normal View History

2013-04-01 11:59:56 -04:00
(function ($, document) {
2013-03-14 21:42:18 -05:00
2013-04-01 11:59:56 -04:00
$(document).on('pageshow', "#aboutPage", function () {
2013-03-14 21:42:18 -05:00
2013-04-01 11:59:56 -04:00
var page = this;
ApiClient.getSystemInfo().done(function(info) {
$('#appVersionNumber', page).html(info.Version);
});
});
2013-03-14 21:42:18 -05:00
2013-04-01 11:59:56 -04:00
})(jQuery, document);