2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

Run dist on latest

This commit is contained in:
Mark Otto
2020-06-13 15:40:28 -07:00
committed by Mark Otto
parent cde53a85d1
commit a656458856
56 changed files with 291 additions and 798 deletions
+1 -1
View File
@@ -25,7 +25,7 @@
var getUID = function getUID(prefix) {
do {
prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here
prefix += Math.floor(Math.random() * MAX_UID);
} while (document.getElementById(prefix));
return prefix;