mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-09-02 19:08:02 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
@@ -105,6 +105,15 @@ Object.defineProperty(TW_Element.prototype, "className", {
|
||||
}
|
||||
});
|
||||
|
||||
Object.defineProperty(TW_Element.prototype, "value", {
|
||||
get: function() {
|
||||
return this.attributes["value"] || "";
|
||||
},
|
||||
set: function(value) {
|
||||
this.attributes["value"] = value;
|
||||
}
|
||||
});
|
||||
|
||||
Object.defineProperty(TW_Element.prototype, "outerHTML", {
|
||||
get: function() {
|
||||
var output = [],attr,a,v;
|
||||
|
Reference in New Issue
Block a user