Commit 4311a20c by Torkel Ödegaard

Fixed issue with editing text panel, removed a function from dashboard…

Fixed issue with editing text panel, removed a function from dashboard controller that I though was not used, turned out it was
parent 1440d1a1
......@@ -102,6 +102,14 @@ function (angular, $, config, _) {
}
};
$scope.panel_path =function(type) {
if(type) {
return 'app/panels/'+type.replace(".","/");
} else {
return false;
}
};
$scope.showJsonEditor = function(evt, options) {
var editScope = $rootScope.$new();
editScope.object = options.object;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment