Skip to content

Commit 890ed0b

Browse files
committed
Fix error copy paste
1 parent ae4678e commit 890ed0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

view/base/web/js/grid-slider.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @Author: Alex Dong
33
* @Date: 2020-07-29 13:21:07
44
* @Last Modified by: Alex Dong
5-
* @Last Modified time: 2022-06-09 09:11:22
5+
* @Last Modified time: 2022-06-13 10:59:10
66
*/
77

88
define([
@@ -23,15 +23,15 @@ define([
2323
this._initSlider();
2424
},
2525

26-
_.uniqid = function (length=10) {
26+
_uniqid: function (length=10) {
2727
let result = '';
28-
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
28+
const characters = 'abcdefghijklmnopqrstuvwxyz0123456789';
2929
const charactersLength = characters.length;
3030
for ( let i = 0; i < length; i++ ) {
3131
result += characters.charAt(Math.floor(Math.random() * charactersLength));
3232
}
3333
return result;
34-
};
34+
},
3535

3636
_initSlider: function () {
3737
var options = this.options;

0 commit comments

Comments
 (0)