snake_case to camelCase

This commit is contained in:
Arik Fraimovich
2016-10-24 12:57:54 +03:00
parent b9ab9135d0
commit 00a77f8d3a
3 changed files with 3 additions and 5 deletions

View File

@@ -119,8 +119,7 @@
$scope.showSharePermissionsModal = function() {
// Create scope for share permissions dialog and pass api path to it
var scope = $scope.$new();
$scope.api_access = 'api/dashboards/' + $scope.dashboard.id + '/acl';
scope.params = {api_access: $scope.api_access};
$scope.apiAccess = 'api/dashboards/' + $scope.dashboard.id + '/acl';
$modal.open({
scope: scope,

View File

@@ -343,8 +343,7 @@
$scope.showSharePermissionsModal = function() {
// Create scope for share permissions dialog and pass api path to it
var scope = $scope.$new();
$scope.api_access = 'api/queries/' + $routeParams.queryId + '/acl';
scope.params = {api_access: $scope.api_access};
$scope.apiAccess = 'api/queries/' + $routeParams.queryId + '/acl';
$modal.open({
scope: scope,

View File

@@ -1,6 +1,6 @@
<div class="modal-header">
<button type="button" class="close" aria-label="Close" ng-click="close()"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Share Edit Permissions</h4>
<h4 class="modal-title">Manage Permissions</h4>
</div>
<div class="modal-body">
<div style="overflow: auto; height: 300px">