Blame view
sources/apps/firstrunwizard/js/activate.js
248 Bytes
|
d1bafeea1
|
1 2 3 4 5 6 7 |
jQuery(document).ready(function () {
//do not show when upgrade is in progress or an error message
//is visible on the login page
if (jQuery('#upgrade').length === 0 && jQuery('#body-login .error').length === 0) {
showfirstrunwizard();
}
});
|