mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-08 18:30:53 +00:00
12.0 change some icons (#6278)
* 01 history back icon * 02 change download icons * 03 fix code format * 04 change copy icons * 05 tree icon more color * change icon
This commit is contained in:
@@ -326,7 +326,7 @@ export const Utils = {
|
||||
},
|
||||
|
||||
joinPath: function(pathA, pathB) {
|
||||
if (pathA[pathA.length-1] === '/') {
|
||||
if (pathA[pathA.length - 1] === '/') {
|
||||
return pathA + pathB;
|
||||
} else {
|
||||
return pathA + '/' + pathB;
|
||||
@@ -1389,7 +1389,7 @@ export const Utils = {
|
||||
// 91~96:[~`
|
||||
// 97~122:a~z
|
||||
// 123~127:{~
|
||||
for (var i = 0; i < length-4; i++) {
|
||||
for (var i = 0; i < length - 4; i++) {
|
||||
var num = Math.floor((Math.random() * (127-33)) + 33);
|
||||
password += String.fromCharCode(num);
|
||||
}
|
||||
|
Reference in New Issue
Block a user