Guest User

Untitled

a guest
Jan 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var userAgent = navigator.userAgent.toLowerCase();
  2.  
  3. if(userAgent.match(/firefox/)) {
  4. $( '#'+elm_id ).bind( "sortstart", function (event, ui) {
  5. ui.helper.css('margin-top', $(window).scrollTop() );
  6. });
  7. $( '#'+elm_id ).bind( "sortbeforestop", function (event, ui) {
  8. ui.helper.css('margin-top', 0 );
  9. });
  10. }
Add Comment
Please, Sign In to add comment