Commit 34a0ce57 authored by XhmikosR's avatar XhmikosR
Browse files

Run `grunt`.

[ci skip]
parent 41912888
Showing with 10 additions and 10 deletions
+10 -10
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -129,7 +129,7 @@ var Util = (function ($) { ...@@ -129,7 +129,7 @@ var Util = (function ($) {
getUID: function getUID(prefix) { getUID: function getUID(prefix) {
do { do {
prefix += ~ ~(Math.random() * 1000000); prefix += ~ ~(Math.random() * 1000000); // "~~" acts like a faster Math.floor() here
} while (document.getElementById(prefix)); } while (document.getElementById(prefix));
return prefix; return prefix;
}, },
......
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
getUID: function getUID(prefix) { getUID: function getUID(prefix) {
do { do {
prefix += ~ ~(Math.random() * 1000000); prefix += ~ ~(Math.random() * 1000000); // "~~" acts like a faster Math.floor() here
} while (document.getElementById(prefix)); } while (document.getElementById(prefix));
return prefix; return prefix;
}, },
......
This diff is collapsed.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -129,7 +129,7 @@ var Util = (function ($) { ...@@ -129,7 +129,7 @@ var Util = (function ($) {
getUID: function getUID(prefix) { getUID: function getUID(prefix) {
do { do {
prefix += ~ ~(Math.random() * 1000000); prefix += ~ ~(Math.random() * 1000000); // "~~" acts like a faster Math.floor() here
} while (document.getElementById(prefix)); } while (document.getElementById(prefix));
return prefix; return prefix;
}, },
......
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
getUID: function getUID(prefix) { getUID: function getUID(prefix) {
do { do {
prefix += ~ ~(Math.random() * 1000000); prefix += ~ ~(Math.random() * 1000000); // "~~" acts like a faster Math.floor() here
} while (document.getElementById(prefix)); } while (document.getElementById(prefix));
return prefix; return prefix;
}, },
......
...@@ -101,7 +101,7 @@ var Util = (function ($) { ...@@ -101,7 +101,7 @@ var Util = (function ($) {
getUID: function getUID(prefix) { getUID: function getUID(prefix) {
do { do {
prefix += ~ ~(Math.random() * 1000000); prefix += ~ ~(Math.random() * 1000000); // "~~" acts like a faster Math.floor() here
} while (document.getElementById(prefix)); } while (document.getElementById(prefix));
return prefix; return prefix;
}, },
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment