aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.WebDashboard/Html/scripts/aboutPage.js
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-23 00:04:36 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-23 00:04:36 -0400
commitb20151fff373100da7946df93afb7dd4dccea3e4 (patch)
treea16d7085c0eab807c309c94461ed60821029f1ff /MediaBrowser.WebDashboard/Html/scripts/aboutPage.js
parent4bc27f3a65ddbffcc7b74683df72503f20df275c (diff)
copy dashboard to the output folder and load from the file system, instead of using embedded resources
Diffstat (limited to 'MediaBrowser.WebDashboard/Html/scripts/aboutPage.js')
-rw-r--r--MediaBrowser.WebDashboard/Html/scripts/aboutPage.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/MediaBrowser.WebDashboard/Html/scripts/aboutPage.js b/MediaBrowser.WebDashboard/Html/scripts/aboutPage.js
deleted file mode 100644
index 14c593d54..000000000
--- a/MediaBrowser.WebDashboard/Html/scripts/aboutPage.js
+++ /dev/null
@@ -1,24 +0,0 @@
-var AboutPage = {
-
- onPageShow: function () {
- AboutPage.pollForInfo();
- },
-
-
- pollForInfo: function () {
- ApiClient.getSystemInfo().done(AboutPage.renderInfo);
- },
-
- renderInfo: function (info) {
- AboutPage.renderSystemInfo(info);
- },
-
-
- renderSystemInfo: function (info) {
- var page = $.mobile.activePage;
- $('#appVersionNumber', page).html(info.Version);
- },
-
-};
-
-$(document).on('pageshow', "#aboutPage", AboutPage.onPageShow); \ No newline at end of file