willcore.uicore
Version:
Base extendable UI html framework.
18 lines (14 loc) • 496 B
JavaScript
const assignable = require("willcore.core/assignable/assignable");
const serverProxy = require("willcore.server/proxies/server/serverProxy.js");
class scriptAssignable extends assignable {
constructor() {
super({ string: 1 }, serverProxy);
}
completionResult() {
return false;
}
completed() {
this.parentProxy._scriptRegistry.registerScript("text/javascript", this.bindedValues.string[0])
}
}
module.exports = scriptAssignable;