/** * @file * JavaScript behaviors for webform_image_file modal. */ (function ($, Drupal) { 'use strict'; /** * Display webform image file in a modal. * * @type {Drupal~behavior} */ Drupal.behaviors.webformImageFileModal = { attach: function (context) { $('.js-webform-image-file-modal', context).once('js-webform-image-file-modal').on('click', function () { // http://stackoverflow.com/questions/11442712/get-width-height-of-remote-image-from-url var img = new Image(); img.src = $(this).attr('href'); img.onload = function () { $('