lib/ruby_app/elements/input.js.haml in RubyApp-0.0.64 vs lib/ruby_app/elements/input.js.haml in RubyApp-0.0.68
- old
+ new
@@ -2,9 +2,9 @@
:plain
// #{__FILE__}
$(document).ready(function() {
$('input[type="text"]').live('change', function(event) {
event.preventDefault();
- RubyApp.queueEvent({_class:'RubyApp::Elements::Input::ChangedEvent', source_id:$(this).attr('id'), value:$(this).val()}, true);
+ RubyApp.queueEvent({_class:'RubyApp::Elements::Input::ChangedEvent', source_id:$(this).attr('id'), value:$(this).val()}, false);
});
});
= yield