Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
deleteme committed Sep 9, 2009
1 parent 43bbce7 commit 93b77aa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions javascripts/accordion.js
Expand Up @@ -14,7 +14,6 @@ Example Markup structure:
*/
var CanBeDisabledAndFireEvents = Class.create({
initialize: function (name, element, memo, disabled) {
console.log(arguments);
this.disabled = disabled || false;
this.elementToBeDisabled = element;
this.name = name;
Expand All @@ -35,7 +34,7 @@ var CanBeDisabledAndFireEvents = Class.create({
else this.disable();
},
fireEvent: function (state, memo) {
console.log(this.name + ':' + state, memo);
//console.log(this.name + ':' + state, memo);
document.fire(this.name + ':' + state, memo);
}
});
Expand Down

0 comments on commit 93b77aa

Please sign in to comment.