Author: jleroux
Date: Wed Jan 22 08:23:37 2014
New Revision: 1560276
URL:
http://svn.apache.org/r1560276Log:
Somehow, though I put it in the comment, I missed to commit that at r1559769
Comment was
>Flat Grey application.js
> moves jQuery(document).ready(function() at bottom (spotted in Chrome console)
Modified:
ofbiz/trunk/themes/flatgrey/webapp/flatgrey/js/application.js
Modified: ofbiz/trunk/themes/flatgrey/webapp/flatgrey/js/application.js
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/themes/flatgrey/webapp/flatgrey/js/application.js?rev=1560276&r1=1560275&r2=1560276&view=diff==============================================================================
--- ofbiz/trunk/themes/flatgrey/webapp/flatgrey/js/application.js (original)
+++ ofbiz/trunk/themes/flatgrey/webapp/flatgrey/js/application.js Wed Jan 22 08:23:37 2014
@@ -104,10 +104,6 @@ var j = 1;
/*********************
JQuery Formalize
*********************/
-jQuery(document).ready(function() {
- FORMALIZE.go();
-});
-
var FORMALIZE = (function($, window, document, undefined) {
var PLACEHOLDER_SUPPORTED = 'placeholder' in document.createElement('input');
var AUTOFOCUS_SUPPORTED = 'autofocus' in document.createElement('input');
@@ -198,3 +194,8 @@ var FORMALIZE = (function($, window, doc
}
};
})(jQuery, this, this.document);
+
+jQuery(document).ready(function() {
+ FORMALIZE.go();
+});
+