File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ var AngularRichTextDiff;
113113 continue ;
114114 }
115115 var tagString = this . tagMap [ diffableString [ x ] ] ;
116- if ( tagString === '' ) {
116+ if ( tagString === undefined ) {
117117 // We somehow have a character that is above our range but didn't map
118118 // Do we need to add an upper bound or change the range?
119119 htmlString += diffableString [ x ] ;
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ module AngularRichTextDiff {
137137 }
138138
139139 var tagString = this . tagMap [ diffableString [ x ] ] ;
140- if ( tagString === '' ) {
140+ if ( tagString === undefined ) {
141141 // We somehow have a character that is above our range but didn't map
142142 // Do we need to add an upper bound or change the range?
143143 htmlString += diffableString [ x ] ;
You can’t perform that action at this time.
0 commit comments