diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/rpmphp.js | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/scripts/rpmphp.js b/scripts/rpmphp.js index 91f4fb9..ba3411d 100644 --- a/scripts/rpmphp.js +++ b/scripts/rpmphp.js @@ -39,15 +39,7 @@ function initZoomJS(name) if ( _owner_cell ) { _owner_cell.empty().text(_data.owner); _maintainers_cell = $('#pkgdb_' + k + '_maintainers'); - _maintainers = ''; - if ( _data.people != null ) { - $.each( - _data.people, - function(){ - _maintainers += this.username + ', '; - } - ) - } + _maintainers = _data.people; _maintainers_cell.empty().text(_maintainers.slice(0, -2)); } } |