mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-21 04:20:36 +03:00
version 1.13.3
This commit is contained in:
+10
-10
@@ -363,19 +363,19 @@ object.os-resize-observer {
|
|||||||
}
|
}
|
||||||
@-webkit-keyframes os-resize-observer-dummy-animation {
|
@-webkit-keyframes os-resize-observer-dummy-animation {
|
||||||
from {
|
from {
|
||||||
z-index: 0;
|
cursor: auto;
|
||||||
}
|
}
|
||||||
to {
|
to {
|
||||||
z-index: -1;
|
cursor: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@keyframes os-resize-observer-dummy-animation {
|
@keyframes os-resize-observer-dummy-animation {
|
||||||
from {
|
from {
|
||||||
z-index: 0;
|
cursor: auto;
|
||||||
}
|
}
|
||||||
to {
|
to {
|
||||||
z-index: -1;
|
cursor: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+15
-13
@@ -2,13 +2,13 @@
|
|||||||
* OverlayScrollbars
|
* OverlayScrollbars
|
||||||
* https://github.com/KingSora/OverlayScrollbars
|
* https://github.com/KingSora/OverlayScrollbars
|
||||||
*
|
*
|
||||||
* Version: 1.13.2
|
* Version: 1.13.3
|
||||||
*
|
*
|
||||||
* Copyright KingSora | Rene Haas.
|
* Copyright KingSora | Rene Haas.
|
||||||
* https://github.com/KingSora
|
* https://github.com/KingSora
|
||||||
*
|
*
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* Date: 01.06.2022
|
* Date: 20.07.2022
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function (global, factory) {
|
(function (global, factory) {
|
||||||
@@ -2812,18 +2812,20 @@
|
|||||||
* A callback which will be called after a element has loaded.
|
* A callback which will be called after a element has loaded.
|
||||||
*/
|
*/
|
||||||
function updateOnLoadCallback(event) {
|
function updateOnLoadCallback(event) {
|
||||||
var target = event.target;
|
if (!_destroyed) {
|
||||||
var elm = FRAMEWORK(event.target);
|
var target = event.target;
|
||||||
var index = FRAMEWORK.inArray(target, _updateOnLoadElms);
|
var elm = FRAMEWORK(event.target);
|
||||||
if (index > -1) {
|
var index = FRAMEWORK.inArray(target, _updateOnLoadElms);
|
||||||
_updateOnLoadElms.splice(index, 1);
|
if (index > -1) {
|
||||||
}
|
_updateOnLoadElms.splice(index, 1);
|
||||||
|
}
|
||||||
|
|
||||||
eachUpdateOnLoad(function (i, updateOnLoadSelector) {
|
eachUpdateOnLoad(function (i, updateOnLoadSelector) {
|
||||||
if (elm.is(updateOnLoadSelector)) {
|
if (elm.is(updateOnLoadSelector)) {
|
||||||
update({ _contentSizeChanged: true });
|
update({ _contentSizeChanged: true });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Vendored
+3
-3
File diff suppressed because one or more lines are too long
@@ -2,13 +2,13 @@
|
|||||||
* OverlayScrollbars
|
* OverlayScrollbars
|
||||||
* https://github.com/KingSora/OverlayScrollbars
|
* https://github.com/KingSora/OverlayScrollbars
|
||||||
*
|
*
|
||||||
* Version: 1.13.2
|
* Version: 1.13.3
|
||||||
*
|
*
|
||||||
* Copyright KingSora | Rene Haas.
|
* Copyright KingSora | Rene Haas.
|
||||||
* https://github.com/KingSora
|
* https://github.com/KingSora
|
||||||
*
|
*
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* Date: 01.06.2022
|
* Date: 20.07.2022
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function (global, factory) {
|
(function (global, factory) {
|
||||||
@@ -1729,18 +1729,20 @@
|
|||||||
* A callback which will be called after a element has loaded.
|
* A callback which will be called after a element has loaded.
|
||||||
*/
|
*/
|
||||||
function updateOnLoadCallback(event) {
|
function updateOnLoadCallback(event) {
|
||||||
var target = event.target;
|
if (!_destroyed) {
|
||||||
var elm = FRAMEWORK(event.target);
|
var target = event.target;
|
||||||
var index = FRAMEWORK.inArray(target, _updateOnLoadElms);
|
var elm = FRAMEWORK(event.target);
|
||||||
if (index > -1) {
|
var index = FRAMEWORK.inArray(target, _updateOnLoadElms);
|
||||||
_updateOnLoadElms.splice(index, 1);
|
if (index > -1) {
|
||||||
}
|
_updateOnLoadElms.splice(index, 1);
|
||||||
|
}
|
||||||
|
|
||||||
eachUpdateOnLoad(function (i, updateOnLoadSelector) {
|
eachUpdateOnLoad(function (i, updateOnLoadSelector) {
|
||||||
if (elm.is(updateOnLoadSelector)) {
|
if (elm.is(updateOnLoadSelector)) {
|
||||||
update({ _contentSizeChanged: true });
|
update({ _contentSizeChanged: true });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Vendored
+3
-3
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "overlayscrollbars",
|
"name": "overlayscrollbars",
|
||||||
"version": "1.13.2",
|
"version": "1.13.3",
|
||||||
"description": "A javascript scrollbar plugin which hides native scrollbars, provides custom styleable overlay scrollbars and keeps the native functionality and feeling.",
|
"description": "A javascript scrollbar plugin which hides native scrollbars, provides custom styleable overlay scrollbars and keeps the native functionality and feeling.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"overlayscrollbars",
|
"overlayscrollbars",
|
||||||
|
|||||||
Reference in New Issue
Block a user