Skip to content

Commit

Permalink
Implement missing isObject.
Browse files Browse the repository at this point in the history
  • Loading branch information
milani committed Aug 5, 2012
1 parent ef23d4d commit dffd834
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/settings.js
Expand Up @@ -157,7 +157,12 @@ decorate(WindowSettings.prototype, {
});



function isObject(o){
if( o instanceof Object) {
return true;
}
return false;
}

function IconGroup(o){
if (o instanceof IconGroup) {
Expand Down

0 comments on commit dffd834

Please sign in to comment.