Ignore:
Timestamp:
Dec 17, 2013, 11:33:32 PM (10 years ago)
Author:
Miklfe
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Full_Background/js/full_BG.js

    r21903 r25999  
    1 $(document).ready(function(){
    2                         (function($) {
     1(function($) {
     2        $(document).ready(function(){
    33                                $.fn.preload = function(options) {
    44                                        var opts        = $.extend({}, $.fn.preload.defaults, options);
     
    1717                                        onComplete      : function(){return false;}
    1818                                };
    19                         })(jQuery);
    2019       
    2120       
     
    6968                                       
    7069                                        //expand and fit the image to the screen
    71                                         $('#tf_zoom').live('click',
     70                                        $(document).on('click', '#tf_zoom',
    7271                                                function(){
    7372                                                if($tf_bg_img.is(':animated'))
     
    120119                                                );
    121120                                                               
    122                                         $('#tf_fullscreen').live('click',
     121                                        $(document).on('click', '#tf_fullscreen',
    123122                                                function(){
    124123                                                if($tf_bg_img.is(':animated'))
     
    373372                                        }
    374373                        });
    375 });
     374        });
     375})(jQuery);
Note: See TracChangeset for help on using the changeset viewer.