Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2015-08-19 05:22:46 +0300
committerJacob Thornton <jacobthornton@gmail.com>2015-08-19 05:22:46 +0300
commit18ff57a183ac141f70164be481ef703729bcdf0d (patch)
tree89c7c9204089f1c960ac25a56ff6588f797b451d /js/dist/util.js
parentf1827e5f9c37e9a344a8f7dd8ed269e774e83fce (diff)
js tests passing + eslint
Diffstat (limited to 'js/dist/util.js')
-rw-r--r--js/dist/util.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/dist/util.js b/js/dist/util.js
index 56296252b1..a2ae5f299a 100644
--- a/js/dist/util.js
+++ b/js/dist/util.js
@@ -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;
},