Introduced new controls to show the list of a node type (by name and id) as properties of other node.

Resolved a typo in privileges control.
Removed duplicate lines in backform.pgadmin.js
This commit is contained in:
Ashesh Vashi
2015-12-28 01:00:20 +05:30
parent d56ddb9fa4
commit eb83d57c5a
8 changed files with 183 additions and 33 deletions

View File

@@ -103,7 +103,7 @@
var privs = {};
_.each(this.privileges, function(p) {
privs[p] = {
'privilige_type': p, 'privilege': false, 'with_grant': false
'privilege_type': p, 'privilege': false, 'with_grant': false
}
});
@@ -376,7 +376,7 @@
});
/*
* This will help us transform the privilieges value in proper format to be
* This will help us transform the privileges value in proper format to be
* displayed in the cell.
*/
var PrivilegeCellFormatter = Backgrid.Extension.PrivilegeCellFormatter =