2008-03-15 23:57:47 +01:00
|
|
|
jQuery(document).ready( function() {
|
2008-01-09 13:12:35 +01:00
|
|
|
// pulse
|
2008-03-02 21:17:30 +01:00
|
|
|
jQuery('.fade').animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300).animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300);
|
2008-01-10 23:42:49 +01:00
|
|
|
|
2008-02-26 23:45:46 +01:00
|
|
|
// Reveal
|
2008-01-10 23:42:49 +01:00
|
|
|
jQuery('.wp-no-js-hidden').removeClass( 'wp-no-js-hidden' );
|
2008-08-20 23:42:31 +02:00
|
|
|
|
|
|
|
// show things that should be visible, hide what should be hidden
|
|
|
|
jQuery('.hide-if-no-js').show();
|
|
|
|
jQuery('.hide-if-js').hide();
|
2008-03-12 06:50:07 +01:00
|
|
|
|
|
|
|
// Basic form validation
|
|
|
|
if ( ( 'undefined' != typeof wpAjax ) && jQuery.isFunction( wpAjax.validateForm ) ) {
|
2008-03-18 20:20:18 +01:00
|
|
|
jQuery('form.validate').submit( function() { return wpAjax.validateForm( jQuery(this) ); } );
|
2008-03-12 06:50:07 +01:00
|
|
|
}
|
2008-08-20 23:42:31 +02:00
|
|
|
|
|
|
|
jQuery('a.no-crazy').click( function() {
|
|
|
|
alert( "This feature isn't enabled in this prototype." );
|
|
|
|
return false;
|
|
|
|
} );
|
2008-01-10 23:42:49 +01:00
|
|
|
});
|
2008-03-15 17:53:36 +01:00
|
|
|
|
|
|
|
(function(JQ) {
|
|
|
|
JQ.fn.tTips = function() {
|
|
|
|
|
|
|
|
JQ('body').append('<div id="tTips"><p id="tTips_inside"></p></div>');
|
|
|
|
var TT = JQ('#tTips');
|
|
|
|
|
|
|
|
this.each(function() {
|
|
|
|
var el = JQ(this), txt;
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-03-15 17:53:36 +01:00
|
|
|
if ( txt = el.attr('title') ) el.attr('tip', txt).removeAttr('title');
|
|
|
|
else return;
|
|
|
|
el.find('img').removeAttr('alt');
|
|
|
|
|
|
|
|
el.mouseover(function(e) {
|
2008-08-20 23:42:31 +02:00
|
|
|
txt = el.attr('tip'), o = el.offset();
|
2008-03-15 17:53:36 +01:00
|
|
|
|
|
|
|
clearTimeout(TT.sD);
|
|
|
|
TT.find('p').html(txt);
|
|
|
|
|
|
|
|
TT.css({'top': o.top - 43, 'left': o.left - 5});
|
|
|
|
TT.sD = setTimeout(function(){TT.fadeIn(150);}, 100);
|
|
|
|
});
|
|
|
|
|
|
|
|
el.mouseout(function() {
|
|
|
|
clearTimeout(TT.sD);
|
|
|
|
TT.css({display : 'none'});
|
|
|
|
})
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}(jQuery));
|
|
|
|
|
2008-08-20 23:42:31 +02:00
|
|
|
jQuery( function($) {
|
|
|
|
var menuToggle = function(ul, effect) {
|
|
|
|
if ( !effect ) {
|
|
|
|
effect = 'slideToggle';
|
|
|
|
}
|
|
|
|
ul[effect]().parent().toggleClass( 'wp-menu-open' );
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
jQuery('#adminmenu li.wp-has-submenu > a').click( function() { return menuToggle( jQuery(this).siblings('ul') ); } );
|
|
|
|
|
|
|
|
jQuery('#dashmenu li.wp-has-submenu').bind( 'mouseenter mouseleave', function() { return menuToggle( jQuery(this).children('ul'), 'toggle' ); } );
|
|
|
|
|
|
|
|
// Temp
|
|
|
|
if ( !$('#post-search, #widget-search').size() ) {
|
|
|
|
$('#wphead').append( '<p id="post-search-prep"><input id="post-search-input" type="text" /><input class="button" type="button" value="Search" /></p>' );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temp 2
|
|
|
|
var minH = $(window).height()-185+"px"
|
|
|
|
$('#wpbody-content').css("min-height", minH);
|
|
|
|
|
|
|
|
} );
|
|
|
|
|
2008-03-15 17:53:36 +01:00
|
|
|
jQuery(function(){jQuery('#media-buttons a').tTips();});
|