13 lines
No EOL
299 B
JavaScript
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;
|
|
});
|
|
} |