]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/ObjectGroupSelector.js
quarantine: use new controller for virus and attachment quarantines
[pmg-gui.git] / js / ObjectGroupSelector.js
index 2ff593ce2f1b1d822e36ef5dbc8e2185e25347a3..3a17e5e5a0b4a08e6860c7ec96cbbe7f592f0307 100644 (file)
@@ -9,7 +9,7 @@ Ext.define('PMG.ObjectGroupSelector', {
 
     rulegroup: undefined,
 
-    initComponent : function() {
+    initComponent: function() {
        var me = this;
 
        if (!me.rulegroup) {
@@ -46,8 +46,8 @@ Ext.define('PMG.ObjectGroupSelector', {
                listeners: {
                    itemdblclick: function(view, rec) {
                        me.fireEvent('selectObjectGroup', me, rec);
-                   }
-               }
+                   },
+               },
            };
        } else {
            me.items = {
@@ -57,11 +57,11 @@ Ext.define('PMG.ObjectGroupSelector', {
                listeners: {
                    itemdblclick: function(view, rec) {
                        me.fireEvent('selectObjectGroup', me, rec);
-                   }
-               }
+                   },
+               },
            };
        }
 
        me.callParent();
-    }
+    },
 });