Skip to content

Commit

Permalink
Removed stray commas (#143).
Browse files Browse the repository at this point in the history
  • Loading branch information
brianreavis committed Oct 12, 2013
1 parent 3a830f2 commit 60b3080
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/js/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@
},
'option_create': function(data, escape) {
return '<div class="create">Add <strong>' + escape(data.input) + '</strong>&hellip;</div>';
},
}
};

self.settings.render = $.extend({}, templates, self.settings.render);
Expand Down Expand Up @@ -2626,7 +2626,7 @@
label : '&times;',
title : 'Remove',
className : 'remove',
append : true,
append : true
}, options);

var self = this;
Expand Down
4 changes: 2 additions & 2 deletions dist/js/standalone/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@
},
'option_create': function(data, escape) {
return '<div class="create">Add <strong>' + escape(data.input) + '</strong>&hellip;</div>';
},
}
};

self.settings.render = $.extend({}, templates, self.settings.render);
Expand Down Expand Up @@ -3210,7 +3210,7 @@
label : '&times;',
title : 'Remove',
className : 'remove',
append : true,
append : true
}, options);

var self = this;
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/remove_button/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Selectize.define('remove_button', function(options) {
label : '&times;',
title : 'Remove',
className : 'remove',
append : true,
append : true
}, options);

var self = this;
Expand Down
2 changes: 1 addition & 1 deletion src/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ $.extend(Selectize.prototype, {
},
'option_create': function(data, escape) {
return '<div class="create">Add <strong>' + escape(data.input) + '</strong>&hellip;</div>';
},
}
};

self.settings.render = $.extend({}, templates, self.settings.render);
Expand Down

0 comments on commit 60b3080

Please sign in to comment.