vendor/assets/javascripts/levels.js in jlog-rails-0.2.0 vs vendor/assets/javascripts/levels.js in jlog-rails-0.2.1
- old
+ new
@@ -13,10 +13,10 @@
*/
JLog.Level = (function() {
function Level(priority, name) {
this.priority = priority;
this.name = name;
- };
+ }
Level.prototype = {
isGreaterOrEqual: function(otherLevel) {
return this.priority >= otherLevel.priority;
}