We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f7f1c1 commit 457b479Copy full SHA for 457b479
package.json
100644
100755
@@ -1,6 +1,6 @@
1
{
2
"name": "bootstrap-vue",
3
- "version": "0.4.1",
+ "version": "0.4.2",
4
"description": "Bootstrap 4 Components for Vue.js 2",
5
"main": "build/bootstrap-vue.common.js",
6
"license": "MIT",
utils/helpers.js
@@ -2,10 +2,10 @@ var inBrowser = typeof window !== 'undefined';
// pulled from http://stackoverflow.com/questions/1349404/generate-a-string-of-5-random-characters-in-javascript
export function uniqueId() {
- let text = '';
+ var text = '';
const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
7
8
- for (let i = 0; i < 5; i++) {
+ for (var i = 0; i < 5; i++) {
9
text += possible.charAt(Math.floor(Math.random() * possible.length))
10
}
11
return text
0 commit comments