Files
EdgeAdmin/web/views/@default/servers/components/ssl/certPopup.js

10 lines
187 B
JavaScript
Raw Normal View History

2020-09-30 17:46:38 +08:00
Tea.context(function () {
// 打印缩进
this.indent = function (index) {
let indent = ""
for (let i = 0; i < index; i++) {
indent += " &nbsp; &nbsp; "
}
return indent
}
})