File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
* @Author : Alex Dong
3
3
* @Date : 2020-07-29 13:21:07
4
4
* @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
6
6
*/
7
7
8
8
define ( [
@@ -23,15 +23,15 @@ define([
23
23
this . _initSlider ( ) ;
24
24
} ,
25
25
26
- _ . uniqid = function ( length = 10 ) {
26
+ _uniqid : function ( length = 10 ) {
27
27
let result = '' ;
28
- const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 ' ;
28
+ const characters = 'abcdefghijklmnopqrstuvwxyz0123456789 ' ;
29
29
const charactersLength = characters . length ;
30
30
for ( let i = 0 ; i < length ; i ++ ) {
31
31
result += characters . charAt ( Math . floor ( Math . random ( ) * charactersLength ) ) ;
32
32
}
33
33
return result ;
34
- } ;
34
+ } ,
35
35
36
36
_initSlider : function ( ) {
37
37
var options = this . options ;
You can’t perform that action at this time.
0 commit comments