mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-14 04:10:26 +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 = ""
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|