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 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
88define ( [
@@ -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 ;
You can’t perform that action at this time.
0 commit comments