// modal_popup
$('.btn-device').click(function(){
var $device = $(this).data('id');
layer_popup($device);
});
function layer_popup(el){
$('#' + el).fadeIn();
$('#' + el).find('a.layer-exit').click(function(){
$('#' + el).fadeOut();
return false;
});
}
$('#myModal')
.on('shown', function () {
$('body').on('wheel.modal mousewheel.modal', function () {
return false;
});
})
.on('hidden', function () {
$('body').off('wheel.modal mousewheel.modal');
});