scratch – Blame information for rev 117

Subversion Repositories:
Rev:
Rev Author Line No. Line
117 office 1 /*===========================
2 Swiper AMD Export
3 ===========================*/
4 if (typeof(module) !== 'undefined')
5 {
6 module.exports = window.Swiper;
7 }
8 else if (typeof define === 'function' && define.amd) {
9 define([], function () {
10 'use strict';
11 return window.Swiper;
12 });
13 }