diff --git a/lib/markup.js b/lib/markup.js index b9228d9..aead99b 100644 --- a/lib/markup.js +++ b/lib/markup.js @@ -21,12 +21,6 @@ markup.on('element:a', function(template) { } }); -markup.on('element:form', function(template) { - if (hasListenerFor(template, 'submit')) { - addListener(template, 'submit', '$preventDefault($event)'); - } -}); - function hasListenerFor(template, eventName) { var hooks = template.hooks; if (!hooks) return false;