Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function initPopupSummary(){
- var scrollDiv = $('.table-container .col-xs-10').length;
- if(scrollDiv < 0){ return false; }
- $('.modal').on('show.bs.modal', function(){
- $('.table-container .col-xs-10').addClass('hiddenScroll');
- $('.modal').appendTo("body").removeClass('face');
- $(".modal").css({
- "z-index": "1500",
- "overflow-y": "auto",
- '-ms-scroll-chaining':'chained',
- '-ms-overflow-style': 'none'
- });
- $('body').addClass('bodyModal');
- if(isMobile.Windows()){
- var heightOfModal = $('body').height();
- }
- });
- $('.modal').on('hidden.bs.modal', function(){
- $('.table-container .col-xs-10').removeClass('hiddenScroll');
- $('body').css('height', 'auto');
- $('body').removeClass('bodyModal');
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment