| 12345678910111213141516171819202122232425262728293031 |
- jQuery(document).ready(function($) {
- var login = $("a[href='/login']");
- login.attr('href', '#login');
- login.fancybox();
- $('.tooltip').tipsy({fade: true});
- $('.tooltip.north').tipsy({fade: true, gravity: 's'});
- $('.tooltip.east').tipsy({fade: true, gravity: 'w'});
- $('.tooltip.west').tipsy({fade: true, gravity: 'e'});
- $('form [title]').tipsy({fade: true, trigger: 'focus', gravity: 'w'});
- setTimeout(function() {
- $('.flash-message').fadeOut('slow', function () {
- $('.flash-message').remove();
- });
- }, 2000);
- });
- function toggleCast() {
- var table = $('#cast table');
- if (table.css('display') == 'inline') {
- table.css('display', 'none');
- $('#cast > p > a').text('Cast ↓');
- $('#castlink').css('display', 'none');
- } else {
- table.css('display', 'inline');
- $('#cast > p > a').text('Cast ↑');
- $('#castlink').css('display', 'inline');
- }
- return false;
- }
|