aboutsummaryrefslogtreecommitdiff
path: root/js/dist
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2015-08-18 19:22:46 -0700
committerJacob Thornton <[email protected]>2015-08-18 19:22:46 -0700
commit18ff57a183ac141f70164be481ef703729bcdf0d (patch)
tree89c7c9204089f1c960ac25a56ff6588f797b451d /js/dist
parentf1827e5f9c37e9a344a8f7dd8ed269e774e83fce (diff)
downloadbootstrap-18ff57a183ac141f70164be481ef703729bcdf0d.tar.xz
bootstrap-18ff57a183ac141f70164be481ef703729bcdf0d.zip
js tests passing + eslint
Diffstat (limited to 'js/dist')
-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 56296252b..a2ae5f299 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;
},