Skip to content

Commit

Permalink
chore(): Bump v3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrzejchalubek committed Aug 8, 2018
1 parent 7a95834 commit 972a01f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 104 deletions.
2 changes: 1 addition & 1 deletion dist/css/glide.core.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
width: 100%;
height: 100%;
flex-shrink: 0;
white-space: initial;
white-space: normal;
user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent; }
Expand Down
2 changes: 1 addition & 1 deletion dist/css/glide.core.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 4 additions & 33 deletions dist/glide.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Glide.js v3.2.2
* Glide.js v3.2.3
* (c) 2013-2018 Jędrzej Chałubek <jedrzej.chalubek@gmail.com> (http://jedrzejchalubek.com/)
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1151,16 +1151,6 @@ var MARGIN_TYPE = {

function Gaps (Glide, Components, Events) {
var Gaps = {
/**
* Setups gap value based on settings.
*
* @return {Void}
*/
mount: function mount() {
this.value = Glide.settings.gap;
},


/**
* Applies gaps between slides. First and last
* slides do not receive it's edge margins.
Expand Down Expand Up @@ -1211,18 +1201,7 @@ function Gaps (Glide, Components, Events) {
* @returns {Number}
*/
get: function get() {
return Gaps._v;
},


/**
* Sets value of the gap.
*
* @param {String} value
* @return {Void}
*/
set: function set(value) {
Gaps._v = toInt(value);
return toInt(Glide.settings.gap);
}
});

Expand Down Expand Up @@ -1252,14 +1231,6 @@ function Gaps (Glide, Components, Events) {
}
});

/**
* Remount component:
* - on updating via API, to update gap value
*/
Events.on('update', function () {
Gaps.mount();
});

/**
* Apply calculated gaps:
* - after building, so slides (including clones) will receive proper margins
Expand Down Expand Up @@ -2697,7 +2668,7 @@ function Swipe (Glide, Components, Events) {
if (settings.swipeThreshold) {
Binder.on(START_EVENTS[0], Components.Html.wrapper, function (event) {
_this.start(event);
}, { passive: true });
});
}

if (settings.dragThreshold) {
Expand Down Expand Up @@ -2729,7 +2700,7 @@ function Swipe (Glide, Components, Events) {

Binder.on(MOVE_EVENTS, Components.Html.wrapper, throttle(function (event) {
_this2.move(event);
}, Glide.settings.throttle), { passive: true });
}, Glide.settings.throttle));
},


Expand Down
37 changes: 4 additions & 33 deletions dist/glide.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Glide.js v3.2.2
* Glide.js v3.2.3
* (c) 2013-2018 Jędrzej Chałubek <jedrzej.chalubek@gmail.com> (http://jedrzejchalubek.com/)
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1157,16 +1157,6 @@

function Gaps (Glide, Components, Events) {
var Gaps = {
/**
* Setups gap value based on settings.
*
* @return {Void}
*/
mount: function mount() {
this.value = Glide.settings.gap;
},


/**
* Applies gaps between slides. First and last
* slides do not receive it's edge margins.
Expand Down Expand Up @@ -1217,18 +1207,7 @@
* @returns {Number}
*/
get: function get() {
return Gaps._v;
},


/**
* Sets value of the gap.
*
* @param {String} value
* @return {Void}
*/
set: function set(value) {
Gaps._v = toInt(value);
return toInt(Glide.settings.gap);
}
});

Expand Down Expand Up @@ -1258,14 +1237,6 @@
}
});

/**
* Remount component:
* - on updating via API, to update gap value
*/
Events.on('update', function () {
Gaps.mount();
});

/**
* Apply calculated gaps:
* - after building, so slides (including clones) will receive proper margins
Expand Down Expand Up @@ -2703,7 +2674,7 @@
if (settings.swipeThreshold) {
Binder.on(START_EVENTS[0], Components.Html.wrapper, function (event) {
_this.start(event);
}, { passive: true });
});
}

if (settings.dragThreshold) {
Expand Down Expand Up @@ -2735,7 +2706,7 @@

Binder.on(MOVE_EVENTS, Components.Html.wrapper, throttle(function (event) {
_this2.move(event);
}, Glide.settings.throttle), { passive: true });
}, Glide.settings.throttle));
},


Expand Down
4 changes: 2 additions & 2 deletions dist/glide.min.js

Large diffs are not rendered by default.

37 changes: 4 additions & 33 deletions dist/glide.modular.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Glide.js v3.2.2
* Glide.js v3.2.3
* (c) 2013-2018 Jędrzej Chałubek <jedrzej.chalubek@gmail.com> (http://jedrzejchalubek.com/)
* Released under the MIT License.
*/
Expand Down Expand Up @@ -1151,16 +1151,6 @@ var MARGIN_TYPE = {

function Gaps (Glide, Components, Events) {
var Gaps = {
/**
* Setups gap value based on settings.
*
* @return {Void}
*/
mount: function mount() {
this.value = Glide.settings.gap;
},


/**
* Applies gaps between slides. First and last
* slides do not receive it's edge margins.
Expand Down Expand Up @@ -1211,18 +1201,7 @@ function Gaps (Glide, Components, Events) {
* @returns {Number}
*/
get: function get() {
return Gaps._v;
},


/**
* Sets value of the gap.
*
* @param {String} value
* @return {Void}
*/
set: function set(value) {
Gaps._v = toInt(value);
return toInt(Glide.settings.gap);
}
});

Expand Down Expand Up @@ -1252,14 +1231,6 @@ function Gaps (Glide, Components, Events) {
}
});

/**
* Remount component:
* - on updating via API, to update gap value
*/
Events.on('update', function () {
Gaps.mount();
});

/**
* Apply calculated gaps:
* - after building, so slides (including clones) will receive proper margins
Expand Down Expand Up @@ -2697,7 +2668,7 @@ function swipe (Glide, Components, Events) {
if (settings.swipeThreshold) {
Binder.on(START_EVENTS[0], Components.Html.wrapper, function (event) {
_this.start(event);
}, { passive: true });
});
}

if (settings.dragThreshold) {
Expand Down Expand Up @@ -2729,7 +2700,7 @@ function swipe (Glide, Components, Events) {

Binder.on(MOVE_EVENTS, Components.Html.wrapper, throttle(function (event) {
_this2.move(event);
}, Glide.settings.throttle), { passive: true });
}, Glide.settings.throttle));
},


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@glidejs/glide",
"version": "3.2.2",
"version": "3.2.3",
"description": "Glide.js is a dependency-free JavaScript ES6 slider and carousel. It’s lightweight, flexible and fast. Designed to slide. No less, no more",
"author": "Jędrzej Chałubek <jedrzej.chalubek@gmail.com> (http://jedrzejchalubek.com/)",
"homepage": "https://glidejs.com",
Expand Down

0 comments on commit 972a01f

Please sign in to comment.