mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-22 17:30:29 +08:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
Tea.context(function () {
|
|
this.userDescription = ""
|
|
|
|
this.changeInstance = function (instance) {
|
|
if (instance != null) {
|
|
this.userDescription = instance.media.userDescription
|
|
} else {
|
|
this.userDescription = ""
|
|
}
|
|
}
|
|
}) |