Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1216,10 +1216,9 @@ function tinyMceService($rootScope, $q, imageHelper, $locale, $http, $timeout, s
target: anchor.attr("target")
};

// drop the lead char from the anchor text, if it has a value
var anchorVal = anchor[0].dataset.anchor;
if (anchorVal) {
currentTarget.anchor = anchorVal.substring(1);
currentTarget.anchor = anchorVal;
}

//locallink detection, we do this here, to avoid poluting the editorService
Expand Down