mirror of https://github.com/zulip/zulip.git
Remove dead code in admin.js.
We had people_list-related code left over from before we started using realm_people_dict. (imported from commit f77c441269f07db2a8998c2184de81f9d0c053d6)
This commit is contained in:
parent
0b16dfc999
commit
aa87335c7f
|
@ -5,9 +5,6 @@ var exports = {};
|
|||
function populate_users () {
|
||||
var tb = $("#admin_users_table");
|
||||
tb.empty();
|
||||
page_params.people_list.sort(function (a, b) {
|
||||
return a.full_name.toLowerCase().localeCompare(b.full_name.toLowerCase());
|
||||
});
|
||||
|
||||
realm_people_dict.each(function (person, key) {
|
||||
if (!person.is_bot) {
|
||||
|
|
Loading…
Reference in New Issue