Skip to content

Commit 457b479

Browse files
author
Pooya Parsa
committed
0.4.2
1 parent 6f7f1c1 commit 457b479

File tree

3 files changed

+194
-206
lines changed

3 files changed

+194
-206
lines changed

package.json

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-vue",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "Bootstrap 4 Components for Vue.js 2",
55
"main": "build/bootstrap-vue.common.js",
66
"license": "MIT",

utils/helpers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ var inBrowser = typeof window !== 'undefined';
22

33
// pulled from http://stackoverflow.com/questions/1349404/generate-a-string-of-5-random-characters-in-javascript
44
export function uniqueId() {
5-
let text = '';
5+
var text = '';
66
const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
77

8-
for (let i = 0; i < 5; i++) {
8+
for (var i = 0; i < 5; i++) {
99
text += possible.charAt(Math.floor(Math.random() * possible.length))
1010
}
1111
return text

0 commit comments

Comments
 (0)