diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-06-02 17:18:28 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-06-02 17:18:28 +0200 |
commit | ea1261f08a376c40bdeb48fcc1a1d095006e3bfe (patch) | |
tree | 81f242aa00fc499f01d46198616ff6ee52d02935 /server/sonar-web/src/main/js/apps/users/list-footer-view.js | |
parent | 49f2651803eb04e700e56d5d98b3914c62551ea3 (diff) | |
download | sonarqube-ea1261f08a376c40bdeb48fcc1a1d095006e3bfe.tar.gz sonarqube-ea1261f08a376c40bdeb48fcc1a1d095006e3bfe.zip |
add backbone-super
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/list-footer-view.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/list-footer-view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/list-footer-view.js b/server/sonar-web/src/main/js/apps/users/list-footer-view.js index 968ad0990d5..cf802586354 100644 --- a/server/sonar-web/src/main/js/apps/users/list-footer-view.js +++ b/server/sonar-web/src/main/js/apps/users/list-footer-view.js @@ -23,7 +23,7 @@ define([ }, serializeData: function () { - return _.extend(Marionette.ItemView.prototype.serializeData.apply(this, arguments), { + return _.extend(this._super(), { total: this.collection.total, count: this.collection.length, more: this.collection.hasMore() |