minor: remove debug logging

This commit is contained in:
Matt Cotter 2016-03-25 13:21:29 -05:00
parent 9eb0411d82
commit 20f72281bc

View File

@ -1672,7 +1672,9 @@ SimpleMDE.prototype.createToolbar = function(items) {
var nonSeparatorIconsFollow = false; var nonSeparatorIconsFollow = false;
for(var x = (i + 1); x < items.length; x++) { for(var x = (i + 1); x < items.length; x++) {
console.log(x);
if(items[x] !== "|" && (!self.options.hideIcons || self.options.hideIcons.indexOf(items[x].name) == -1)) { if(items[x] !== "|" && (!self.options.hideIcons || self.options.hideIcons.indexOf(items[x].name) == -1)) {
console.log(items[x]);
nonSeparatorIconsFollow = true; nonSeparatorIconsFollow = true;
} }
} }