Skip to content

Commit

Permalink
Some JSLint
Browse files Browse the repository at this point in the history
  • Loading branch information
bergie committed Nov 2, 2011
1 parent fcddf6a commit 67859b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/jquery.Midgard.midgardCreate.js
Expand Up @@ -52,7 +52,7 @@

jQuery('#midgard-bar .toolbarcontent-right').append(jQuery('<button id="midgardcreate-save">Save</button>'));
this.options.saveButton = jQuery('#midgardcreate-save');
this.options.saveButton.button({disabled: true})
this.options.saveButton.button({disabled: true});
return this.options.saveButton;
},

Expand Down Expand Up @@ -117,5 +117,5 @@
this._setOption('state', 'browse');
this._trigger('statechange', null, 'browse');
}
})
});
})(jQuery);
4 changes: 2 additions & 2 deletions src/jquery.Midgard.midgardStorage.js
Expand Up @@ -154,7 +154,7 @@
var entity = this.vie.EntityManager.getByJSONLD(JSON.parse(local));

this._trigger('loaded', null, {
instance: entity,
instance: entity
});
},

Expand Down Expand Up @@ -202,5 +202,5 @@

localStorage.removeItem(model.getSubject());
}
})
});
})(jQuery);
2 changes: 1 addition & 1 deletion src/jquery.Midgard.midgardToolbar.js
Expand Up @@ -54,5 +54,5 @@
_getFull: function() {
return jQuery('<div class="midgard-create" id="midgard-bar"><div class="ui-widget-content"><div class="toolbarcontent"><div class="midgard-logo-button"><a id="midgard-bar-hidebutton" class="ui-widget-hidebut"></a></div><div class="toolbarcontent-left"></div><div class="toolbarcontent-center"></div><div class="toolbarcontent-right"></div></div></div>');
}
})
});
})(jQuery);

0 comments on commit 67859b9

Please sign in to comment.