mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-05 10:16:57 +00:00
Don't throw errors when hitting limits of the fakedom
This commit is contained in:
parent
1733a2c39c
commit
432542bbcc
@ -224,8 +224,7 @@ Object.defineProperty(TW_Element.prototype, "textContent", {
|
||||
get: function() {
|
||||
if(this.isRaw) {
|
||||
if(this.rawTextContent === null) {
|
||||
console.log(booboo)
|
||||
throw "Cannot get textContent on a raw TW_Element";
|
||||
return "";
|
||||
} else {
|
||||
return this.rawTextContent;
|
||||
}
|
||||
@ -245,7 +244,7 @@ Object.defineProperty(TW_Element.prototype, "textContent", {
|
||||
Object.defineProperty(TW_Element.prototype, "formattedTextContent", {
|
||||
get: function() {
|
||||
if(this.isRaw) {
|
||||
throw "Cannot get formattedTextContent on a raw TW_Element";
|
||||
return "";
|
||||
} else {
|
||||
var b = [],
|
||||
isBlock = $tw.config.htmlBlockElements.indexOf(this.tag) !== -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user