diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/groups/users-view.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/groups/users-view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/groups/users-view.js b/server/sonar-web/src/main/js/apps/groups/users-view.js index bd236b67040..7786d63fe44 100644 --- a/server/sonar-web/src/main/js/apps/groups/users-view.js +++ b/server/sonar-web/src/main/js/apps/groups/users-view.js @@ -8,7 +8,7 @@ define([ template: Templates['groups-users'], onRender: function () { - Modal.prototype.onRender.apply(this, arguments); + this._super(); new window.SelectList({ el: this.$('#groups-users'), width: '100%', @@ -35,7 +35,7 @@ define([ onClose: function () { this.model.collection.refresh(); - Modal.prototype.onClose.apply(this, arguments); + this._super(); } }); |