Merge pull request #499 from LEW21/patch-1

In the View mode, open links in the same tab by default
This commit is contained in:
Jos de Jong 2018-01-08 20:39:39 +01:00 committed by GitHub
commit fbe65d122c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -2151,7 +2151,6 @@ Node.prototype._createDomValue = function () {
// create a link in case of read-only editor and value containing an url
domValue = document.createElement('a');
domValue.href = this.value;
domValue.target = '_blank';
domValue.innerHTML = this._escapeHTML(this.value);
}
else {