diff --git a/platform/commonUI/about/bundle.json b/platform/commonUI/about/bundle.json index 364df7e06d..663d2550eb 100644 --- a/platform/commonUI/about/bundle.json +++ b/platform/commonUI/about/bundle.json @@ -5,12 +5,30 @@ { "key": "app-logo", "priority": "optional", - "templateUrl": "app-logo.html" + "templateUrl": "templates/app-logo.html" }, { "key": "about-logo", "priority": "preferred", - "templateUrl": "about-logo.html" + "templateUrl": "templates/about-logo.html" + } + ], + "controllers": [ + { + "key": "LogoController", + "depends": [ "overlayService" ], + "implementation": "LogoController.js" + }, + { + "key": "AboutController", + "depends": [ "versions[]", "$window" ], + "implementation": "AboutController.js" + } + ], + "routes": [ + { + "when": "/licenses", + "templateUrl": "templates/licenses.html" } ] } diff --git a/platform/commonUI/about/src/AboutController.js b/platform/commonUI/about/src/AboutController.js index 88fd95d99c..6eb2171d34 100644 --- a/platform/commonUI/about/src/AboutController.js +++ b/platform/commonUI/about/src/AboutController.js @@ -11,7 +11,7 @@ define( return versions; }, openLicenses: function () { - $window.open("#/licenses", "_blank"); + $window.open("#/licenses"); } }; }