Index: trunk/parsers/wikidom/lib/synth/views/es.ContentView.js |
— | — | @@ -215,11 +215,11 @@ |
216 | 216 | this.$rangeEnd.hide(); |
217 | 217 | } else { |
218 | 218 | // Multiple line selection |
219 | | - var blockWidth = this.$.width(); |
| 219 | + var contentWidth = this.$.width(); |
220 | 220 | this.$rangeStart.css( { |
221 | 221 | 'top': fromPosition.top, |
222 | 222 | 'left': fromPosition.left, |
223 | | - 'width': blockWidth - fromPosition.left, |
| 223 | + 'width': contentWidth - fromPosition.left, |
224 | 224 | 'height': fromPosition.bottom - fromPosition.top |
225 | 225 | } ).show(); |
226 | 226 | this.$rangeEnd.css( { |
— | — | @@ -232,7 +232,7 @@ |
233 | 233 | this.$rangeFill.css( { |
234 | 234 | 'top': fromPosition.bottom, |
235 | 235 | 'left': 0, |
236 | | - 'width': blockWidth, |
| 236 | + 'width': contentWidth, |
237 | 237 | 'height': toPosition.top - fromPosition.bottom |
238 | 238 | } ).show(); |
239 | 239 | } else { |