mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
25 lines
560 B
JavaScript
25 lines
560 B
JavaScript
|
var version = '3.3.0';
|
||
|
|
||
|
Package.describe({
|
||
|
name: 'nolimits4web:swiper',
|
||
|
summary: 'iDangero.us Swiper - mobile touch slider with hardware accelerated transitions and native behavior',
|
||
|
version: version,
|
||
|
git: 'https://github.com/nolimits4web/Swiper'
|
||
|
});
|
||
|
|
||
|
Package.onUse(function (api) {
|
||
|
api.versionsFrom('1.1.0.2');
|
||
|
|
||
|
api.addFiles([
|
||
|
'dist/css/swiper.min.css',
|
||
|
'dist/js/swiper.js'
|
||
|
], ['client']
|
||
|
);
|
||
|
|
||
|
// Since swiper is attached to window, we do not need to export Swiper
|
||
|
// api.export('Swiper');
|
||
|
});
|
||
|
|
||
|
Package.onTest(function (api) {
|
||
|
});
|