From 45626f9b44a7c0793cadff6d7c75c4f5d9e85a2a Mon Sep 17 00:00:00 2001 From: codejet Date: Thu, 15 Sep 2011 13:20:27 +0300 Subject: [PATCH] Edited ch04/modules.html via GitHub --- ch04/modules.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch04/modules.html b/ch04/modules.html index 6762d89..7d305b7 100644 --- a/ch04/modules.html +++ b/ch04/modules.html @@ -38,8 +38,8 @@ mod.load(function(){ this.view = $("#view"); - this.view.mouseover(this.proxy(this.toggleClass), true); - this.view.mouseout(this.proxy(this.toggleClass), false); + this.view.mouseover(this.proxy(this.toggleClass)); + this.view.mouseout(this.proxy(this.toggleClass)); }); })(jQuery, Controller);