Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. (function( $ ) {
  2. "use strict";
  3.  
  4. wp.customize( 'my_ser', function( value ) {
  5. value.bind( function( to ) {
  6. $( '#loaders' ).unwrap().removeClass().wrap( "<section class='loading-overlay'></section>" ).addClass( 'loading-overlay loader-inner ' + to ).fadeOut(2000,
  7.  
  8. function()
  9.  
  10. {
  11.  
  12. $(this).parent().fadeOut(2000,
  13.  
  14. function()
  15.  
  16. {
  17.  
  18. $('body').css('overflow','auto');
  19.  
  20. $(this).remove();
  21.  
  22. });
  23.  
  24. });
  25.  
  26. } );
  27. });
  28.  
  29.  
  30. })( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement