Export 0.1.63
[platform/framework/web/web-ui-fw.git] / tests / unit-tests / toggleswitch / toggleswitch-tests.js
index 569862c..8122aaa 100644 (file)
@@ -33,8 +33,8 @@ $(document).ready( function () {
                var ts = $("#ts-self").toggleswitch(),
                        before = ts.toggleswitch( "option", "checked" );
 
-               ts.bind("changed", function() {
-                       ok( true, "should trigger changed event");
+               ts.bind("change", function() {
+                       ok( true, "should trigger change event");
                        notEqual( before, ts.toggleswitch( "option", "checked" ), "should change value" );
                });