]> git.wh0rd.org - tt-rss.git/blobdiff - include/login_form.php
@FIXED dijit modules aren't cached even all the js files are compressed
[tt-rss.git] / include / login_form.php
index 7cf975a9e01a78e19aa8090d3613450d6d179538..b401fdac05142a3fea1cda7d42b2db7bff8b52a5 100644 (file)
 
 <script type="text/javascript">
 function init() {
-       dojo.require("dijit.form.Button");
-       dojo.require("dijit.form.CheckBox");
-       dojo.require("dijit.form.Form");
-       dojo.require("dijit.form.Select");
-       dojo.require("dijit.form.TextBox");
-       dojo.require("dijit.form.ValidationTextBox");
 
-       dojo.parser.parse();
+       require(['dojo/parser','dijit/form/Button','dijit/form/CheckBox','dijit/form/Form',
+       'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser){
+               parser.parse();
+               //show tooltip node only after this widget is instaniated. 
+               dojo.query('div[dojoType="dijit.Tooltip"]').style({
+                       display:''
+               });
+               fetchProfiles();
+               dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
+               document.forms.loginForm.login.focus();
+       });     
 
-       fetchProfiles();
-
-       dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
-
-       document.forms.loginForm.login.focus();
 }
 
 function fetchProfiles() {
@@ -217,7 +216,7 @@ function bwLimitChange(elem) {
                        <label id="bw_limit_label" style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
                </div>
 
-               <div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below">
+               <div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
 <?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
                </div>