browser_development-8.x-1.x-dev/assets/js/browser-development.js
assets/js/browser-development.js
(function ($) {
var initialized;
//-- Stops Drupal from loading JS multiple times
function init() {
if (!initialized) {
initialized = true;
}
}
Drupal.behaviors.browser_development = {
attach: function (context, settings) {
'use strict';
init();
}
};
})(jQuery);
