--- a/web/data/cubicweb.edition.js Fri Jul 25 17:10:05 2014 +0200
+++ b/web/data/cubicweb.edition.js Wed May 20 16:13:07 2015 +0200
@@ -537,53 +537,6 @@
}
/**
- * .. function:: setFormsTarget(node)
- *
- * called on load to set target and iframeso object.
- *
- * .. note::
- *
- * This was a hack to make form loop handling XHTML compliant.
- * Since we do not care about xhtml any longer, this may go away.
- *
- * .. note::
- *
- * `object` nodes might be a potential replacement for iframes
- *
- * .. note::
- *
- * The form's `target` attribute should probably become a simple data-target
- * immediately generated server-side.
- * Since we don't do xhtml any longer, the iframe should probably be either
- * reconsidered or at least emitted server-side.
- */
-function setFormsTarget(node) {
- var $node = jQuery(node || document.body);
- $node.find('form').each(function() {
- var form = jQuery(this);
- var target = form.attr('cubicweb:target');
- if (target) {
- form.attr('target', target);
- /* do not use display: none because some browsers ignore iframe
- * with no display */
- form.append(IFRAME({
- name: target,
- id: target,
- src: 'javascript: void(0)',
- width: '0px',
- height: '0px'
- }));
- form.removeAttr('cubicweb:target'); // useles from now on, pop it
- // to make IE9 happy
- }
- });
-}
-
-jQuery(document).ready(function() {
- setFormsTarget();
-});
-
-/**
* .. function:: validateForm(formid, action, onsuccess, onfailure)
*
* called on traditionnal form submission : the idea is to try