Subversion Repositories DevTools

Rev

Rev 7064 | Rev 7162 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7064 Rev 7065
Line 33... Line 33...
33
        }
33
        }
34
        
34
        
35
    },'json');
35
    },'json');
36
}
36
}
37
 
37
 
38
// Function to blink Text. Use sparingly
-
 
39
 
-
 
40
function blink_text() {
-
 
41
    $('.blink').fadeOut(500);
-
 
42
    $('.blink').fadeIn(500);
-
 
43
}
-
 
44
setInterval(blink_text, 1000);
-
 
45
 
-
 
46
//  
38
//  
47
//  Init the dynamic header content
39
//  Init the dynamic header content
48
$(document).ready(function () {
40
$(document).ready(function () {
49
    //console.log ("Dynamic header loaded");
41
    //console.log ("Dynamic header loaded");
50
    //
42
    //
51
    //  Setup a function to be called every 30 seconds
43
    //  Setup a function to be called every 30 seconds
52
    var indefTimer = null;
44
    var indefTimer = null;
53
    updateHeader();
45
    updateHeader();
54
    indefTimer = setInterval( updateHeader,30000 );
46
    indefTimer = setInterval( updateHeader,30000 );
-
 
47
 
-
 
48
    // Function to blink Text. Use sparingly
-
 
49
 
-
 
50
    function blink_text() {
-
 
51
        $('.blink').fadeOut(500);
-
 
52
        $('.blink').fadeIn(500);
-
 
53
    }
-
 
54
    setInterval(blink_text, 1000);
-
 
55
 
55
});
56
});
56
 
57