HomeHelpTrac

Changeset 9743 for trunk/plugins


Ignore:
Timestamp:
03/20/09 05:49:47 (3 years ago)
Author:
Alexander Ermashev
Message:
  • add new functions for member menu ;
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/jquery/ui.fixedmenu.js

    r9640 r9743  
    44 */ 
    55 
    6 jQuery.fn.fixedBox = function(options) { 
     6jQuery.fn.fixedBox = function(options, callback) { 
    77 
    88    options = jQuery.extend({ 
     
    6666        // set visible ; 
    6767        jQuery(this).css('display', 'block'); 
     68        if ( typeof callback == 'function' ) { 
     69            callback(); 
     70        }     
    6871    })); 
    6972}; 
Note: See TracChangeset for help on using the changeset viewer.