jellyfish-web/dashboard-ui/bower_components/Swiper/src/js/amd.js
2016-01-31 01:03:40 -05:00

13 lines
No EOL
299 B
JavaScript

/*===========================
Swiper AMD Export
===========================*/
if (typeof(module) !== 'undefined')
{
module.exports = window.Swiper;
}
else if (typeof define === 'function' && define.amd) {
define([], function () {
'use strict';
return window.Swiper;
});
}