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