Commit compiled JavaScript

This commit is contained in:
Benjamin Melançon 2019-08-31 09:30:34 -04:00
parent 97fa994536
commit fdf0f76df2

View file

@ -4,6 +4,9 @@
// @TODO Or, best, write a text formatter that does the below and assigns the
// appropriate class, for example .embed-responsive-4by3
(function ($) {
'use strict';
// Find all iframes
var $iframes = $( "iframe" );
@ -25,3 +28,5 @@ $( window ).resize( function () {
});
// Resize to fix all iframes on page load.
}).resize();
})(jQuery);