aboutsummaryrefslogtreecommitdiffstats
path: root/demos/widget/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/widget/default.html')
-rw-r--r--demos/widget/default.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/widget/default.html b/demos/widget/default.html
index 45cbe3298..3b812ef8e 100644
--- a/demos/widget/default.html
+++ b/demos/widget/default.html
@@ -106,7 +106,7 @@
// always refresh when changing options
_setOptions: function() {
// _super and _superApply handle keeping the right this-context
- this._superApply( "_setOptions", arguments );
+ this._superApply( arguments );
this._refresh();
},
@@ -116,7 +116,7 @@
if ( /red|green|blue/.test(key) && (value < 0 || value > 255) ) {
return;
}
- this._super( "_setOption", key, value );
+ this._super( key, value );
}
});