Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 514792 - AnnotationStyler to merge html and DOM node style.
  • Loading branch information
libing wang committed Apr 25, 2017
1 parent bddfd92 commit 28a79e5
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -893,7 +893,12 @@ define("orion/editor/annotations", ['i18n!orion/editor/nls/messages', 'orion/edi
}
}
}
}
if (style.html) {
result.html = style.html;
}
if (style.node) {
result.node = style.node;
} }
return result;
},
_mergeStyleRanges: function(ranges, styleRange) {
Expand Down

0 comments on commit 28a79e5

Please sign in to comment.