diff --git a/Html/about.html b/Html/about.html
index 5b778f4a7..07b14cd8b 100644
--- a/Html/about.html
+++ b/Html/about.html
@@ -26,7 +26,7 @@
- Utilizing Pismo File Mount through a donated license. + Utilizing Pismo File Mount through a donated license.
diff --git a/Html/scripts/aboutPage.js b/Html/scripts/aboutPage.js index c9a275d9b..14c593d54 100644 --- a/Html/scripts/aboutPage.js +++ b/Html/scripts/aboutPage.js @@ -6,17 +6,17 @@ pollForInfo: function () { - $.getJSON("dashboardInfo").done(AboutPage.renderInfo); + ApiClient.getSystemInfo().done(AboutPage.renderInfo); }, - renderInfo: function (dashboardInfo) { - AboutPage.renderSystemInfo(dashboardInfo); + renderInfo: function (info) { + AboutPage.renderSystemInfo(info); }, - renderSystemInfo: function (dashboardInfo) { + renderSystemInfo: function (info) { var page = $.mobile.activePage; - $('#appVersionNumber', page).html(dashboardInfo.SystemInfo.Version); + $('#appVersionNumber', page).html(info.Version); }, };