/*global $, dotclear, getData */ 'use strict'; Object.assign(dotclear.msg, getData('ie_msg')); $(function() { if ($('*.error').length > 0) { return; } $('#ie-gui form[method=post]:has(input[type=hidden][name=autosubmit])').each(function() { $('input[type=submit]', this).remove(); $(this).after('

' + dotclear.msg.please_wait + '

'); $(this).submit(); }); });