зеркало из https://github.com/mozilla/pjs.git
another fix for bug 22117, cookie viewer display not working, r=goodger
This commit is contained in:
Родитель
c8bd09546c
Коммит
62c289db73
|
@ -240,9 +240,9 @@ function CreatePermissionList()
|
||||||
// purpose : an home-brewed object that represents a individual permission in the stream
|
// purpose : an home-brewed object that represents a individual permission in the stream
|
||||||
function Permission(number,type,domain)
|
function Permission(number,type,domain)
|
||||||
{
|
{
|
||||||
this.number = (arguments.length) ? number : null;
|
this.number = (number) ? number : null;
|
||||||
this.type = (arguments.length) ? type : null;
|
this.type = (type) ? type : null;
|
||||||
this.domain = (arguments.length) ? domain : null;
|
this.domain = (domain) ? domain : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// function : <CookieViewer.js>::loadPermissions();
|
// function : <CookieViewer.js>::loadPermissions();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче