2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00
This commit is contained in:
XhmikosR
2019-10-08 09:39:10 +03:00
committed by GitHub
parent 9c54d35797
commit 1770691b33
55 changed files with 761 additions and 576 deletions
+1 -2
View File
@@ -25,7 +25,6 @@
var getUID = function getUID(prefix) {
do {
// eslint-disable-next-line no-bitwise
prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here
} while (document.getElementById(prefix));
@@ -123,7 +122,7 @@
try {
element.querySelectorAll(':scope *');
} catch (error) {
} catch (_) {
return false;
}