mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Fixed resize bug over iframe
This commit is contained in:
3
static/dist/main.min.js
vendored
3
static/dist/main.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -71,6 +71,12 @@ $(document).ready(function()
|
|||||||
});
|
});
|
||||||
//awdwad
|
//awdwad
|
||||||
$(".video-container").resizable({
|
$(".video-container").resizable({
|
||||||
|
start: function(event, ui) {
|
||||||
|
$('iframe').css('pointer-events','none');
|
||||||
|
},
|
||||||
|
stop: function(event, ui) {
|
||||||
|
$('iframe').css('pointer-events','auto');
|
||||||
|
},
|
||||||
handles: "e",
|
handles: "e",
|
||||||
minWidth: 350
|
minWidth: 350
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user