Files
md-cv-maker/production/bower_components/Materialize/js/initial.js
2016-07-28 14:53:35 +01:00

12 lines
264 B
JavaScript

// Check for jQuery.
if (typeof(jQuery) === 'undefined') {
var jQuery;
// Check if require is a defined function.
if (typeof(require) === 'function') {
jQuery = $ = require('jquery');
// Else use the dollar sign alias.
} else {
jQuery = $;
}
}