2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-27 14:46:01 +03:00
This commit is contained in:
Mark Otto
2015-08-18 20:25:48 -07:00
30 changed files with 577 additions and 302 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0): util.js
@@ -100,7 +101,7 @@ var Util = (function ($) {
TRANSITION_END: 'bsTransitionEnd',
getUID: function getUID(prefix) {
do prefix += ~ ~(Math.random() * 1000000); while (document.getElementById(prefix));
do { prefix += ~ ~(Math.random() * 1000000); } while (document.getElementById(prefix));
return prefix;
},