Rename camel cased files to snake

This commit is contained in:
Rashid Khan 2014-02-28 09:17:53 -07:00
parent c57d38fb52
commit 47f44436a9
5 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ define(function (require) {
$scope.gridControl = {};
$scope.openSave = function () {
var template = 'kibana/apps/dashboard/partials/saveDashboard.html';
var template = 'kibana/apps/dashboard/partials/save_dashboard.html';
// Close if already open
$scope.configTemplate = $scope.configTemplate === template ? undefined : template;
@ -35,7 +35,7 @@ define(function (require) {
};
$scope.openLoad = function () {
var template = 'kibana/apps/dashboard/partials/loadDashboard.html';
var template = 'kibana/apps/dashboard/partials/load_dashboard.html';
// Close if already open
$scope.configTemplate = $scope.configTemplate === template ? undefined : template;

View file

@ -30,7 +30,7 @@ define(function (require) {
$scope.configTemplate = undefined;
};
},
templateUrl: 'kibana/partials/navConfig.html'
templateUrl: 'kibana/partials/nav_config.html'
};
});
});