12 lines
No EOL
283 B
JavaScript
12 lines
No EOL
283 B
JavaScript
(function ($, document) {
|
|
|
|
$(document).on('pageshow', "#aboutPage", function () {
|
|
|
|
var page = this;
|
|
|
|
ApiClient.getSystemInfo().done(function(info) {
|
|
$('#appVersionNumber', page).html(info.Version);
|
|
});
|
|
});
|
|
|
|
})(jQuery, document); |