mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
CFBundle: isLoaded() should return a bool
This commit is contained in:
@@ -239,7 +239,7 @@ DISPLAY_NAME(CFBundle.prototype.isLoading);
|
||||
|
||||
CFBundle.prototype.isLoaded = function()
|
||||
{
|
||||
return this._loadStatus & CFBundleLoaded;
|
||||
return !!(this._loadStatus & CFBundleLoaded);
|
||||
}
|
||||
|
||||
DISPLAY_NAME(CFBundle.prototype.isLoaded);
|
||||
|
||||
Reference in New Issue
Block a user