Add safingTailwind-1.2

This commit is contained in:
Luke 2021-12-13 07:29:14 +01:00
parent c54798ddd1
commit abd2fd25e8
15 changed files with 267698 additions and 1 deletions

View file

@ -0,0 +1,15 @@
$(".preview-panel-left").resizable({
handleSelector: ".preview-panel-splitter",
resizeHeight: false,
});
var i = 0, timeOut = 0;
$(".preview-container").hover(function () {
iframe = $(this).parent().find( ".iframe" );
timeOut = setInterval(function(){
iframe.height((iframe.contents().find('html').height()) + 'px')
}, 10);
}, function () {
clearInterval(timeOut);
});