forked from nm3clol/nm3clol-express-app
18 lines
645 B
Plaintext
18 lines
645 B
Plaintext
<!-- Bootstrap JS (optional, if you need Bootstrap JS features) -->
|
|
<script src="https://daball.me/vendor/popper.js/dist/popper.min.js"></script>
|
|
<script src="https://daball.me/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://daball.me/vendor/jquery-easing/jquery.easing.min.js"></script>
|
|
<script src="https://daball.me/layouts/blog/js/blog.min.js"></script>
|
|
<script>
|
|
$(function () {
|
|
var resizables = $('.resizable');
|
|
resizables.each(function (index, resizable) {
|
|
resizable.resizable({
|
|
animate: true,
|
|
helper: 'ui-resizable-helper',
|
|
ghost: true,
|
|
});
|
|
});
|
|
})
|
|
</script>
|