Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/hushasha/aggregation-platform/src/commit/a28e1765eb176ae6e2859acfeab225f983950623/plugins/developer/ts/navbar.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
aggregation-platform/plugins/developer/ts/navbar.ts

26 lines
807 B

/// <reference path="../../includes.ts"/>
/// <reference path="../../kubernetes/ts/kubernetesHelpers.ts"/>
/// <reference path="developerEnrichers.ts"/>
/// <reference path="developerHelpers.ts"/>
/// <reference path="developerNavigation.ts"/>
module Developer {
export var NavBarController = controller("NavBarController",
["$scope", "$location", "$routeParams", "$timeout", "KubernetesApiURL",
($scope, $location:ng.ILocationService, $routeParams, $timeout) => {
$scope.isValid = (item) => {
if (item) {
var value = item.isValid;
if (angular.isFunction(value)) {
return value(item)
} else {
return angular.isUndefined(value) || value;
}
}
return false;
}
}]);
}