Files
EdgeAdmin/web/views/@default/servers/certs/certPopup.js
2020-11-24 17:36:42 +08:00

10 lines
187 B
JavaScript

Tea.context(function () {
// 打印缩进
this.indent = function (index) {
let indent = ""
for (let i = 0; i < index; i++) {
indent += " &nbsp; &nbsp; "
}
return indent
}
})