uikit icon indicating copy to clipboard operation
uikit copied to clipboard

lock body scroll when showing overlay

Open pgherveou opened this issue 12 years ago • 0 comments

I hard coded something like that in my local branch, to lock the scrolling when showing the ovelay Do you think this is an option we should expose to the api ?

  Overlay.prototype.show = function(){
    $('body').css('overflow', 'hidden');
   ...
  };
  Overlay.prototype.hide = function(){
    $('body').css('overflow', '');
   ...
  };

pgherveou avatar Jul 31 '12 09:07 pgherveou