Skip to content

Commit

Permalink
Accidentally checked in some logging. Remove it.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfiller committed Sep 5, 2012
1 parent 567f2b0 commit 3640fa1
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions chosen/chosen.jquery.js
Expand Up @@ -19,7 +19,6 @@

SelectParser.prototype.add_node = function(child) {
if (child.nodeName.toUpperCase() === "OPTGROUP") {
console.log("group");
return this.add_group(child);
} else {
return this.add_option(child);
Expand All @@ -46,7 +45,6 @@
};

SelectParser.prototype.add_option = function(option, group_position, group_disabled) {
console.log("option");
if (option.nodeName.toUpperCase() === "OPTION") {
if (option.text !== "") {
if (group_position != null) this.parsed[group_position].children += 1;
Expand Down

0 comments on commit 3640fa1

Please sign in to comment.