Commit 847b6ddfa72720bf6f9494c82f7542c45841ed49
1 parent
c7848c90
Exists in
master
using rangy for selection
Showing
8 changed files
with
239 additions
and
574 deletions
Show diff stats
lib/comment_paragraph_plugin.rb
... | ... | @@ -21,14 +21,13 @@ class CommentParagraphPlugin < Noosfero::Plugin |
21 | 21 | end |
22 | 22 | |
23 | 23 | def js_files |
24 | - 'comment_paragraph_macro.js' | |
24 | + ['comment_paragraph_macro', 'rangy-core', 'rangy-cssclassapplier', 'rangy-serializer'] | |
25 | 25 | end |
26 | 26 | |
27 | 27 | def stylesheet? |
28 | 28 | true |
29 | 29 | end |
30 | 30 | |
31 | - | |
32 | 31 | end |
33 | 32 | |
34 | 33 | require_dependency 'comment_paragraph_plugin/macros/allow_comment' | ... | ... |
public/comment_paragraph_macro.js
1 | 1 | var comment_paragraph_anchor; |
2 | 2 | jQuery(document).ready(function($) { |
3 | 3 | |
4 | - jQuery('.autoexpand-text-area').autosize(); | |
4 | + rangy.init(); | |
5 | + cssApplier = rangy.createCssClassApplier("commented-area", {normalize: false}); | |
6 | + var rootElement; | |
7 | + | |
8 | +// $('.bt-marker').click(function(){ | |
9 | +// console.log($(this).data('paragraph-id')); | |
10 | +// rootElement = $('#' + 'comment_paragraph' + $(this).data('paragraph-id')).get(0); | |
11 | +// cssApplier.toggleSelection(); | |
12 | +// var selObj = rangy.getSelection(); | |
13 | +// var se = rangy.serializeSelection(selObj, true,rootElement); | |
14 | +// //$('#result').val(se); | |
15 | +// }); | |
16 | + | |
17 | + | |
18 | + //Undo previous highlight from the paragraph | |
19 | + $('.comment_paragraph').mousedown(function(){ | |
20 | + $(this).find('.commented-area').replaceWith(function() { | |
21 | + return $(this).html(); | |
22 | + }); | |
23 | + }); | |
24 | + | |
25 | + //highlight area from the paragraph | |
26 | + $('.comment_paragraph').mouseup(function(){ | |
27 | + rootElement = $(this).get(0); | |
28 | + console.log(rootElement) | |
29 | + cssApplier.toggleSelection(); | |
30 | + var selObj = rangy.getSelection(); | |
31 | + var selected_area = rangy.serializeSelection(selObj, true,rootElement); | |
32 | + | |
33 | + alert(selected_area) | |
34 | + | |
35 | + form = jQuery(this).parent().find('form'); | |
36 | + if (form.find('input.selected_area').length === 0){ | |
37 | + jQuery('<input>').attr({ | |
38 | + class: 'selected_area', | |
39 | + name: 'comment[comment_paragraph_selected_area]', | |
40 | + value: selected_area | |
41 | + }).appendTo(form) | |
42 | + }else{ | |
43 | + form.find('input.selected_area').val(selected_area) | |
44 | + } | |
45 | + rootElement.focus(); | |
46 | + }); | |
47 | + | |
48 | + | |
5 | 49 | |
6 | 50 | var anchor = window.location.hash; |
7 | 51 | if(anchor.length==0) return; |
... | ... | @@ -21,8 +65,20 @@ jQuery(document).ready(function($) { |
21 | 65 | $.scrollTo(button); |
22 | 66 | } |
23 | 67 | }); |
68 | + | |
69 | + | |
24 | 70 | }); |
25 | 71 | |
72 | +function selectAreaForComment(paragraph){ | |
73 | +// console.log(this) | |
74 | +// alert("Paragrafo " + paragraph) | |
75 | +// cssApplier.toggleSelection(); | |
76 | +// saveSelection(); | |
77 | +// var selObj = rangy.getSelection(); | |
78 | +// var se = rangy.serializeSelection(selObj, true,rootElement); | |
79 | +} | |
80 | + | |
81 | + | |
26 | 82 | function toggleParagraph(paragraph) { |
27 | 83 | var div = jQuery('div.comments_list_toggle_paragraph_'+paragraph); |
28 | 84 | var visible = div.is(':visible'); |
... | ... | @@ -41,290 +97,19 @@ function loadCompleted(paragraph) { |
41 | 97 | } |
42 | 98 | } |
43 | 99 | |
100 | + | |
101 | + | |
44 | 102 | //Return a string with the beggining and the end of the selection of a text area separated by colon |
45 | 103 | function getSelectionBounderies(textareaId){ |
46 | 104 | |
47 | - var textarea = document.getElementById(textareaId); | |
48 | - if ('selectionStart' in textarea) { | |
49 | - // check whether some text is selected in the textarea | |
50 | - if (textarea.selectionStart != textarea.selectionEnd) { | |
51 | - alert(textarea.selectionStart + ":" + textarea.selectionEnd) | |
52 | - return textarea.selectionStart + ":" + textarea.selectionEnd; | |
53 | - } | |
54 | - } | |
105 | +// var textarea = document.getElementById(textareaId); | |
106 | +// if ('selectionStart' in textarea) { | |
107 | +// // check whether some text is selected in the textarea | |
108 | +// if (textarea.selectionStart != textarea.selectionEnd) { | |
109 | +// alert(textarea.selectionStart + ":" + textarea.selectionEnd) | |
110 | +// return textarea.selectionStart + ":" + textarea.selectionEnd; | |
111 | +// } | |
112 | +// } | |
55 | 113 | |
56 | 114 | return false |
57 | 115 | } |
58 | - | |
59 | -/*! | |
60 | - Autosize v1.18.9 - 2014-05-27 | |
61 | - Automatically adjust textarea height based on user input. | |
62 | - (c) 2014 Jack Moore - http://www.jacklmoore.com/autosize | |
63 | - license: http://www.opensource.org/licenses/mit-license.php | |
64 | -*/ | |
65 | -(function ($) { | |
66 | - var | |
67 | - defaults = { | |
68 | - className: 'autosizejs', | |
69 | - id: 'autosizejs', | |
70 | - append: '\n', | |
71 | - callback: false, | |
72 | - resizeDelay: 10, | |
73 | - placeholder: true | |
74 | - }, | |
75 | - | |
76 | - // border:0 is unnecessary, but avoids a bug in Firefox on OSX | |
77 | - copy = '<textarea tabindex="-1" style="position:absolute; top:-999px; left:0; right:auto; bottom:auto; border:0; padding: 0; -moz-box-sizing:content-box; -webkit-box-sizing:content-box; box-sizing:content-box; word-wrap:break-word; height:0 !important; min-height:0 !important; overflow:hidden; transition:none; -webkit-transition:none; -moz-transition:none;"/>', | |
78 | - | |
79 | - // line-height is conditionally included because IE7/IE8/old Opera do not return the correct value. | |
80 | - typographyStyles = [ | |
81 | - 'fontFamily', | |
82 | - 'fontSize', | |
83 | - 'fontWeight', | |
84 | - 'fontStyle', | |
85 | - 'letterSpacing', | |
86 | - 'textTransform', | |
87 | - 'wordSpacing', | |
88 | - 'textIndent' | |
89 | - ], | |
90 | - | |
91 | - // to keep track which textarea is being mirrored when adjust() is called. | |
92 | - mirrored, | |
93 | - | |
94 | - // the mirror element, which is used to calculate what size the mirrored element should be. | |
95 | - mirror = $(copy).data('autosize', true)[0]; | |
96 | - | |
97 | - // test that line-height can be accurately copied. | |
98 | - mirror.style.lineHeight = '99px'; | |
99 | - if ($(mirror).css('lineHeight') === '99px') { | |
100 | - typographyStyles.push('lineHeight'); | |
101 | - } | |
102 | - mirror.style.lineHeight = ''; | |
103 | - | |
104 | - $.fn.autosize = function (options) { | |
105 | - if (!this.length) { | |
106 | - return this; | |
107 | - } | |
108 | - | |
109 | - options = $.extend({}, defaults, options || {}); | |
110 | - | |
111 | - if (mirror.parentNode !== document.body) { | |
112 | - $(document.body).append(mirror); | |
113 | - } | |
114 | - | |
115 | - return this.each(function () { | |
116 | - var | |
117 | - ta = this, | |
118 | - $ta = $(ta), | |
119 | - maxHeight, | |
120 | - minHeight, | |
121 | - boxOffset = 0, | |
122 | - callback = $.isFunction(options.callback), | |
123 | - originalStyles = { | |
124 | - height: ta.style.height, | |
125 | - overflow: ta.style.overflow, | |
126 | - overflowY: ta.style.overflowY, | |
127 | - wordWrap: ta.style.wordWrap, | |
128 | - resize: ta.style.resize | |
129 | - }, | |
130 | - timeout, | |
131 | - width = $ta.width(), | |
132 | - taResize = $ta.css('resize'); | |
133 | - | |
134 | - if ($ta.data('autosize')) { | |
135 | - // exit if autosize has already been applied, or if the textarea is the mirror element. | |
136 | - return; | |
137 | - } | |
138 | - $ta.data('autosize', true); | |
139 | - | |
140 | - if ($ta.css('box-sizing') === 'border-box' || $ta.css('-moz-box-sizing') === 'border-box' || $ta.css('-webkit-box-sizing') === 'border-box'){ | |
141 | - boxOffset = $ta.outerHeight() - $ta.height(); | |
142 | - } | |
143 | - | |
144 | - // IE8 and lower return 'auto', which parses to NaN, if no min-height is set. | |
145 | - minHeight = Math.max(parseInt($ta.css('minHeight'), 10) - boxOffset || 0, $ta.height()); | |
146 | - | |
147 | - $ta.css({ | |
148 | - overflow: 'hidden', | |
149 | - overflowY: 'hidden', | |
150 | - wordWrap: 'break-word' // horizontal overflow is hidden, so break-word is necessary for handling words longer than the textarea width | |
151 | - }); | |
152 | - | |
153 | - if (taResize === 'vertical') { | |
154 | - $ta.css('resize','none'); | |
155 | - } else if (taResize === 'both') { | |
156 | - $ta.css('resize', 'horizontal'); | |
157 | - } | |
158 | - | |
159 | - // The mirror width must exactly match the textarea width, so using getBoundingClientRect because it doesn't round the sub-pixel value. | |
160 | - // window.getComputedStyle, getBoundingClientRect returning a width are unsupported, but also unneeded in IE8 and lower. | |
161 | - function setWidth() { | |
162 | - var width; | |
163 | - var style = window.getComputedStyle ? window.getComputedStyle(ta, null) : false; | |
164 | - | |
165 | - if (style) { | |
166 | - | |
167 | - width = ta.getBoundingClientRect().width; | |
168 | - | |
169 | - if (width === 0 || typeof width !== 'number') { | |
170 | - width = parseInt(style.width,10); | |
171 | - } | |
172 | - | |
173 | - $.each(['paddingLeft', 'paddingRight', 'borderLeftWidth', 'borderRightWidth'], function(i,val){ | |
174 | - width -= parseInt(style[val],10); | |
175 | - }); | |
176 | - } else { | |
177 | - width = $ta.width(); | |
178 | - } | |
179 | - | |
180 | - mirror.style.width = Math.max(width,0) + 'px'; | |
181 | - } | |
182 | - | |
183 | - function initMirror() { | |
184 | - var styles = {}; | |
185 | - | |
186 | - mirrored = ta; | |
187 | - mirror.className = options.className; | |
188 | - mirror.id = options.id; | |
189 | - maxHeight = parseInt($ta.css('maxHeight'), 10); | |
190 | - | |
191 | - // mirror is a duplicate textarea located off-screen that | |
192 | - // is automatically updated to contain the same text as the | |
193 | - // original textarea. mirror always has a height of 0. | |
194 | - // This gives a cross-browser supported way getting the actual | |
195 | - // height of the text, through the scrollTop property. | |
196 | - $.each(typographyStyles, function(i,val){ | |
197 | - styles[val] = $ta.css(val); | |
198 | - }); | |
199 | - | |
200 | - $(mirror).css(styles).attr('wrap', $ta.attr('wrap')); | |
201 | - | |
202 | - setWidth(); | |
203 | - | |
204 | - // Chrome-specific fix: | |
205 | - // When the textarea y-overflow is hidden, Chrome doesn't reflow the text to account for the space | |
206 | - // made available by removing the scrollbar. This workaround triggers the reflow for Chrome. | |
207 | - if (window.chrome) { | |
208 | - var width = ta.style.width; | |
209 | - ta.style.width = '0px'; | |
210 | - var ignore = ta.offsetWidth; | |
211 | - ta.style.width = width; | |
212 | - } | |
213 | - } | |
214 | - | |
215 | - // Using mainly bare JS in this function because it is going | |
216 | - // to fire very often while typing, and needs to very efficient. | |
217 | - function adjust() { | |
218 | - var height, original; | |
219 | - | |
220 | - if (mirrored !== ta) { | |
221 | - initMirror(); | |
222 | - } else { | |
223 | - setWidth(); | |
224 | - } | |
225 | - | |
226 | - if (!ta.value && options.placeholder) { | |
227 | - // If the textarea is empty, copy the placeholder text into | |
228 | - // the mirror control and use that for sizing so that we | |
229 | - // don't end up with placeholder getting trimmed. | |
230 | - mirror.value = ($ta.attr("placeholder") || '') + options.append; | |
231 | - } else { | |
232 | - mirror.value = ta.value + options.append; | |
233 | - } | |
234 | - | |
235 | - mirror.style.overflowY = ta.style.overflowY; | |
236 | - original = parseInt(ta.style.height,10); | |
237 | - | |
238 | - // Setting scrollTop to zero is needed in IE8 and lower for the next step to be accurately applied | |
239 | - mirror.scrollTop = 0; | |
240 | - | |
241 | - mirror.scrollTop = 9e4; | |
242 | - | |
243 | - // Using scrollTop rather than scrollHeight because scrollHeight is non-standard and includes padding. | |
244 | - height = mirror.scrollTop; | |
245 | - | |
246 | - if (maxHeight && height > maxHeight) { | |
247 | - ta.style.overflowY = 'scroll'; | |
248 | - height = maxHeight; | |
249 | - } else { | |
250 | - ta.style.overflowY = 'hidden'; | |
251 | - if (height < minHeight) { | |
252 | - height = minHeight; | |
253 | - } | |
254 | - } | |
255 | - | |
256 | - height += boxOffset; | |
257 | - | |
258 | - if (original !== height) { | |
259 | - ta.style.height = height + 'px'; | |
260 | - if (callback) { | |
261 | - options.callback.call(ta,ta); | |
262 | - } | |
263 | - } | |
264 | - } | |
265 | - | |
266 | - function resize () { | |
267 | - clearTimeout(timeout); | |
268 | - timeout = setTimeout(function(){ | |
269 | - var newWidth = $ta.width(); | |
270 | - | |
271 | - if (newWidth !== width) { | |
272 | - width = newWidth; | |
273 | - adjust(); | |
274 | - } | |
275 | - }, parseInt(options.resizeDelay,10)); | |
276 | - } | |
277 | - | |
278 | - if ('onpropertychange' in ta) { | |
279 | - if ('oninput' in ta) { | |
280 | - // Detects IE9. IE9 does not fire onpropertychange or oninput for deletions, | |
281 | - // so binding to onkeyup to catch most of those occasions. There is no way that I | |
282 | - // know of to detect something like 'cut' in IE9. | |
283 | - $ta.on('input.autosize keyup.autosize', adjust); | |
284 | - } else { | |
285 | - // IE7 / IE8 | |
286 | - $ta.on('propertychange.autosize', function(){ | |
287 | - if(event.propertyName === 'value'){ | |
288 | - adjust(); | |
289 | - } | |
290 | - }); | |
291 | - } | |
292 | - } else { | |
293 | - // Modern Browsers | |
294 | - $ta.on('input.autosize', adjust); | |
295 | - } | |
296 | - | |
297 | - // Set options.resizeDelay to false if using fixed-width textarea elements. | |
298 | - // Uses a timeout and width check to reduce the amount of times adjust needs to be called after window resize. | |
299 | - | |
300 | - if (options.resizeDelay !== false) { | |
301 | - $(window).on('resize.autosize', resize); | |
302 | - } | |
303 | - | |
304 | - // Event for manual triggering if needed. | |
305 | - // Should only be needed when the value of the textarea is changed through JavaScript rather than user input. | |
306 | - $ta.on('autosize.resize', adjust); | |
307 | - | |
308 | - // Event for manual triggering that also forces the styles to update as well. | |
309 | - // Should only be needed if one of typography styles of the textarea change, and the textarea is already the target of the adjust method. | |
310 | - $ta.on('autosize.resizeIncludeStyle', function() { | |
311 | - mirrored = null; | |
312 | - adjust(); | |
313 | - }); | |
314 | - | |
315 | - $ta.on('autosize.destroy', function(){ | |
316 | - mirrored = null; | |
317 | - clearTimeout(timeout); | |
318 | - $(window).off('resize', resize); | |
319 | - $ta | |
320 | - .off('autosize') | |
321 | - .off('.autosize') | |
322 | - .css(originalStyles) | |
323 | - .removeData('autosize'); | |
324 | - }); | |
325 | - | |
326 | - // Call adjust in case the textarea already contains text. | |
327 | - adjust(); | |
328 | - }); | |
329 | - }; | |
330 | -}(window.jQuery || window.$)); // jQuery or jQuery-like library, such as Zepto | |
331 | 116 | \ No newline at end of file | ... | ... |
public/jquery.autosize.js
... | ... | @@ -1,272 +0,0 @@ |
1 | -/*! | |
2 | - Autosize v1.18.9 - 2014-05-27 | |
3 | - Automatically adjust textarea height based on user input. | |
4 | - (c) 2014 Jack Moore - http://www.jacklmoore.com/autosize | |
5 | - license: http://www.opensource.org/licenses/mit-license.php | |
6 | -*/ | |
7 | -(function ($) { | |
8 | - var | |
9 | - defaults = { | |
10 | - className: 'autosizejs', | |
11 | - id: 'autosizejs', | |
12 | - append: '\n', | |
13 | - callback: false, | |
14 | - resizeDelay: 10, | |
15 | - placeholder: true | |
16 | - }, | |
17 | - | |
18 | - // border:0 is unnecessary, but avoids a bug in Firefox on OSX | |
19 | - copy = '<textarea tabindex="-1" style="position:absolute; top:-999px; left:0; right:auto; bottom:auto; border:0; padding: 0; -moz-box-sizing:content-box; -webkit-box-sizing:content-box; box-sizing:content-box; word-wrap:break-word; height:0 !important; min-height:0 !important; overflow:hidden; transition:none; -webkit-transition:none; -moz-transition:none;"/>', | |
20 | - | |
21 | - // line-height is conditionally included because IE7/IE8/old Opera do not return the correct value. | |
22 | - typographyStyles = [ | |
23 | - 'fontFamily', | |
24 | - 'fontSize', | |
25 | - 'fontWeight', | |
26 | - 'fontStyle', | |
27 | - 'letterSpacing', | |
28 | - 'textTransform', | |
29 | - 'wordSpacing', | |
30 | - 'textIndent' | |
31 | - ], | |
32 | - | |
33 | - // to keep track which textarea is being mirrored when adjust() is called. | |
34 | - mirrored, | |
35 | - | |
36 | - // the mirror element, which is used to calculate what size the mirrored element should be. | |
37 | - mirror = $(copy).data('autosize', true)[0]; | |
38 | - | |
39 | - // test that line-height can be accurately copied. | |
40 | - mirror.style.lineHeight = '99px'; | |
41 | - if ($(mirror).css('lineHeight') === '99px') { | |
42 | - typographyStyles.push('lineHeight'); | |
43 | - } | |
44 | - mirror.style.lineHeight = ''; | |
45 | - | |
46 | - $.fn.autosize = function (options) { | |
47 | - if (!this.length) { | |
48 | - return this; | |
49 | - } | |
50 | - | |
51 | - options = $.extend({}, defaults, options || {}); | |
52 | - | |
53 | - if (mirror.parentNode !== document.body) { | |
54 | - $(document.body).append(mirror); | |
55 | - } | |
56 | - | |
57 | - return this.each(function () { | |
58 | - var | |
59 | - ta = this, | |
60 | - $ta = $(ta), | |
61 | - maxHeight, | |
62 | - minHeight, | |
63 | - boxOffset = 0, | |
64 | - callback = $.isFunction(options.callback), | |
65 | - originalStyles = { | |
66 | - height: ta.style.height, | |
67 | - overflow: ta.style.overflow, | |
68 | - overflowY: ta.style.overflowY, | |
69 | - wordWrap: ta.style.wordWrap, | |
70 | - resize: ta.style.resize | |
71 | - }, | |
72 | - timeout, | |
73 | - width = $ta.width(), | |
74 | - taResize = $ta.css('resize'); | |
75 | - | |
76 | - if ($ta.data('autosize')) { | |
77 | - // exit if autosize has already been applied, or if the textarea is the mirror element. | |
78 | - return; | |
79 | - } | |
80 | - $ta.data('autosize', true); | |
81 | - | |
82 | - if ($ta.css('box-sizing') === 'border-box' || $ta.css('-moz-box-sizing') === 'border-box' || $ta.css('-webkit-box-sizing') === 'border-box'){ | |
83 | - boxOffset = $ta.outerHeight() - $ta.height(); | |
84 | - } | |
85 | - | |
86 | - // IE8 and lower return 'auto', which parses to NaN, if no min-height is set. | |
87 | - minHeight = Math.max(parseInt($ta.css('minHeight'), 10) - boxOffset || 0, $ta.height()); | |
88 | - | |
89 | - $ta.css({ | |
90 | - overflow: 'hidden', | |
91 | - overflowY: 'hidden', | |
92 | - wordWrap: 'break-word' // horizontal overflow is hidden, so break-word is necessary for handling words longer than the textarea width | |
93 | - }); | |
94 | - | |
95 | - if (taResize === 'vertical') { | |
96 | - $ta.css('resize','none'); | |
97 | - } else if (taResize === 'both') { | |
98 | - $ta.css('resize', 'horizontal'); | |
99 | - } | |
100 | - | |
101 | - // The mirror width must exactly match the textarea width, so using getBoundingClientRect because it doesn't round the sub-pixel value. | |
102 | - // window.getComputedStyle, getBoundingClientRect returning a width are unsupported, but also unneeded in IE8 and lower. | |
103 | - function setWidth() { | |
104 | - var width; | |
105 | - var style = window.getComputedStyle ? window.getComputedStyle(ta, null) : false; | |
106 | - | |
107 | - if (style) { | |
108 | - | |
109 | - width = ta.getBoundingClientRect().width; | |
110 | - | |
111 | - if (width === 0 || typeof width !== 'number') { | |
112 | - width = parseInt(style.width,10); | |
113 | - } | |
114 | - | |
115 | - $.each(['paddingLeft', 'paddingRight', 'borderLeftWidth', 'borderRightWidth'], function(i,val){ | |
116 | - width -= parseInt(style[val],10); | |
117 | - }); | |
118 | - } else { | |
119 | - width = $ta.width(); | |
120 | - } | |
121 | - | |
122 | - mirror.style.width = Math.max(width,0) + 'px'; | |
123 | - } | |
124 | - | |
125 | - function initMirror() { | |
126 | - var styles = {}; | |
127 | - | |
128 | - mirrored = ta; | |
129 | - mirror.className = options.className; | |
130 | - mirror.id = options.id; | |
131 | - maxHeight = parseInt($ta.css('maxHeight'), 10); | |
132 | - | |
133 | - // mirror is a duplicate textarea located off-screen that | |
134 | - // is automatically updated to contain the same text as the | |
135 | - // original textarea. mirror always has a height of 0. | |
136 | - // This gives a cross-browser supported way getting the actual | |
137 | - // height of the text, through the scrollTop property. | |
138 | - $.each(typographyStyles, function(i,val){ | |
139 | - styles[val] = $ta.css(val); | |
140 | - }); | |
141 | - | |
142 | - $(mirror).css(styles).attr('wrap', $ta.attr('wrap')); | |
143 | - | |
144 | - setWidth(); | |
145 | - | |
146 | - // Chrome-specific fix: | |
147 | - // When the textarea y-overflow is hidden, Chrome doesn't reflow the text to account for the space | |
148 | - // made available by removing the scrollbar. This workaround triggers the reflow for Chrome. | |
149 | - if (window.chrome) { | |
150 | - var width = ta.style.width; | |
151 | - ta.style.width = '0px'; | |
152 | - var ignore = ta.offsetWidth; | |
153 | - ta.style.width = width; | |
154 | - } | |
155 | - } | |
156 | - | |
157 | - // Using mainly bare JS in this function because it is going | |
158 | - // to fire very often while typing, and needs to very efficient. | |
159 | - function adjust() { | |
160 | - var height, original; | |
161 | - | |
162 | - if (mirrored !== ta) { | |
163 | - initMirror(); | |
164 | - } else { | |
165 | - setWidth(); | |
166 | - } | |
167 | - | |
168 | - if (!ta.value && options.placeholder) { | |
169 | - // If the textarea is empty, copy the placeholder text into | |
170 | - // the mirror control and use that for sizing so that we | |
171 | - // don't end up with placeholder getting trimmed. | |
172 | - mirror.value = ($ta.attr("placeholder") || '') + options.append; | |
173 | - } else { | |
174 | - mirror.value = ta.value + options.append; | |
175 | - } | |
176 | - | |
177 | - mirror.style.overflowY = ta.style.overflowY; | |
178 | - original = parseInt(ta.style.height,10); | |
179 | - | |
180 | - // Setting scrollTop to zero is needed in IE8 and lower for the next step to be accurately applied | |
181 | - mirror.scrollTop = 0; | |
182 | - | |
183 | - mirror.scrollTop = 9e4; | |
184 | - | |
185 | - // Using scrollTop rather than scrollHeight because scrollHeight is non-standard and includes padding. | |
186 | - height = mirror.scrollTop; | |
187 | - | |
188 | - if (maxHeight && height > maxHeight) { | |
189 | - ta.style.overflowY = 'scroll'; | |
190 | - height = maxHeight; | |
191 | - } else { | |
192 | - ta.style.overflowY = 'hidden'; | |
193 | - if (height < minHeight) { | |
194 | - height = minHeight; | |
195 | - } | |
196 | - } | |
197 | - | |
198 | - height += boxOffset; | |
199 | - | |
200 | - if (original !== height) { | |
201 | - ta.style.height = height + 'px'; | |
202 | - if (callback) { | |
203 | - options.callback.call(ta,ta); | |
204 | - } | |
205 | - } | |
206 | - } | |
207 | - | |
208 | - function resize () { | |
209 | - clearTimeout(timeout); | |
210 | - timeout = setTimeout(function(){ | |
211 | - var newWidth = $ta.width(); | |
212 | - | |
213 | - if (newWidth !== width) { | |
214 | - width = newWidth; | |
215 | - adjust(); | |
216 | - } | |
217 | - }, parseInt(options.resizeDelay,10)); | |
218 | - } | |
219 | - | |
220 | - if ('onpropertychange' in ta) { | |
221 | - if ('oninput' in ta) { | |
222 | - // Detects IE9. IE9 does not fire onpropertychange or oninput for deletions, | |
223 | - // so binding to onkeyup to catch most of those occasions. There is no way that I | |
224 | - // know of to detect something like 'cut' in IE9. | |
225 | - $ta.on('input.autosize keyup.autosize', adjust); | |
226 | - } else { | |
227 | - // IE7 / IE8 | |
228 | - $ta.on('propertychange.autosize', function(){ | |
229 | - if(event.propertyName === 'value'){ | |
230 | - adjust(); | |
231 | - } | |
232 | - }); | |
233 | - } | |
234 | - } else { | |
235 | - // Modern Browsers | |
236 | - $ta.on('input.autosize', adjust); | |
237 | - } | |
238 | - | |
239 | - // Set options.resizeDelay to false if using fixed-width textarea elements. | |
240 | - // Uses a timeout and width check to reduce the amount of times adjust needs to be called after window resize. | |
241 | - | |
242 | - if (options.resizeDelay !== false) { | |
243 | - $(window).on('resize.autosize', resize); | |
244 | - } | |
245 | - | |
246 | - // Event for manual triggering if needed. | |
247 | - // Should only be needed when the value of the textarea is changed through JavaScript rather than user input. | |
248 | - $ta.on('autosize.resize', adjust); | |
249 | - | |
250 | - // Event for manual triggering that also forces the styles to update as well. | |
251 | - // Should only be needed if one of typography styles of the textarea change, and the textarea is already the target of the adjust method. | |
252 | - $ta.on('autosize.resizeIncludeStyle', function() { | |
253 | - mirrored = null; | |
254 | - adjust(); | |
255 | - }); | |
256 | - | |
257 | - $ta.on('autosize.destroy', function(){ | |
258 | - mirrored = null; | |
259 | - clearTimeout(timeout); | |
260 | - $(window).off('resize', resize); | |
261 | - $ta | |
262 | - .off('autosize') | |
263 | - .off('.autosize') | |
264 | - .css(originalStyles) | |
265 | - .removeData('autosize'); | |
266 | - }); | |
267 | - | |
268 | - // Call adjust in case the textarea already contains text. | |
269 | - adjust(); | |
270 | - }); | |
271 | - }; | |
272 | -}(window.jQuery || window.$)); // jQuery or jQuery-like library, such as Zepto |
... | ... | @@ -0,0 +1,94 @@ |
1 | +/* | |
2 | + Rangy, a cross-browser JavaScript range and selection library | |
3 | + http://code.google.com/p/rangy/ | |
4 | + | |
5 | + Copyright 2012, Tim Down | |
6 | + Licensed under the MIT license. | |
7 | + Version: 1.2.3 | |
8 | + Build date: 26 February 2012 | |
9 | +*/ | |
10 | +window.rangy=function(){function l(p,u){var w=typeof p[u];return w=="function"||!!(w=="object"&&p[u])||w=="unknown"}function K(p,u){return!!(typeof p[u]=="object"&&p[u])}function H(p,u){return typeof p[u]!="undefined"}function I(p){return function(u,w){for(var B=w.length;B--;)if(!p(u,w[B]))return false;return true}}function z(p){return p&&A(p,x)&&v(p,t)}function C(p){window.alert("Rangy not supported in your browser. Reason: "+p);c.initialized=true;c.supported=false}function N(){if(!c.initialized){var p, | |
11 | +u=false,w=false;if(l(document,"createRange")){p=document.createRange();if(A(p,n)&&v(p,i))u=true;p.detach()}if((p=K(document,"body")?document.body:document.getElementsByTagName("body")[0])&&l(p,"createTextRange")){p=p.createTextRange();if(z(p))w=true}!u&&!w&&C("Neither Range nor TextRange are implemented");c.initialized=true;c.features={implementsDomRange:u,implementsTextRange:w};u=k.concat(f);w=0;for(p=u.length;w<p;++w)try{u[w](c)}catch(B){K(window,"console")&&l(window.console,"log")&&window.console.log("Init listener threw an exception. Continuing.", | |
12 | +B)}}}function O(p){this.name=p;this.supported=this.initialized=false}var i=["startContainer","startOffset","endContainer","endOffset","collapsed","commonAncestorContainer","START_TO_START","START_TO_END","END_TO_START","END_TO_END"],n=["setStart","setStartBefore","setStartAfter","setEnd","setEndBefore","setEndAfter","collapse","selectNode","selectNodeContents","compareBoundaryPoints","deleteContents","extractContents","cloneContents","insertNode","surroundContents","cloneRange","toString","detach"], | |
13 | +t=["boundingHeight","boundingLeft","boundingTop","boundingWidth","htmlText","text"],x=["collapse","compareEndPoints","duplicate","getBookmark","moveToBookmark","moveToElementText","parentElement","pasteHTML","select","setEndPoint","getBoundingClientRect"],A=I(l),q=I(K),v=I(H),c={version:"1.2.3",initialized:false,supported:true,util:{isHostMethod:l,isHostObject:K,isHostProperty:H,areHostMethods:A,areHostObjects:q,areHostProperties:v,isTextRange:z},features:{},modules:{},config:{alertOnWarn:false,preferTextRange:false}}; | |
14 | +c.fail=C;c.warn=function(p){p="Rangy warning: "+p;if(c.config.alertOnWarn)window.alert(p);else typeof window.console!="undefined"&&typeof window.console.log!="undefined"&&window.console.log(p)};if({}.hasOwnProperty)c.util.extend=function(p,u){for(var w in u)if(u.hasOwnProperty(w))p[w]=u[w]};else C("hasOwnProperty not supported");var f=[],k=[];c.init=N;c.addInitListener=function(p){c.initialized?p(c):f.push(p)};var r=[];c.addCreateMissingNativeApiListener=function(p){r.push(p)};c.createMissingNativeApi= | |
15 | +function(p){p=p||window;N();for(var u=0,w=r.length;u<w;++u)r[u](p)};O.prototype.fail=function(p){this.initialized=true;this.supported=false;throw Error("Module '"+this.name+"' failed to load: "+p);};O.prototype.warn=function(p){c.warn("Module "+this.name+": "+p)};O.prototype.createError=function(p){return Error("Error in Rangy "+this.name+" module: "+p)};c.createModule=function(p,u){var w=new O(p);c.modules[p]=w;k.push(function(B){u(B,w);w.initialized=true;w.supported=true})};c.requireModules=function(p){for(var u= | |
16 | +0,w=p.length,B,V;u<w;++u){V=p[u];B=c.modules[V];if(!B||!(B instanceof O))throw Error("Module '"+V+"' not found");if(!B.supported)throw Error("Module '"+V+"' not supported");}};var L=false;q=function(){if(!L){L=true;c.initialized||N()}};if(typeof window=="undefined")C("No window found");else if(typeof document=="undefined")C("No document found");else{l(document,"addEventListener")&&document.addEventListener("DOMContentLoaded",q,false);if(l(window,"addEventListener"))window.addEventListener("load", | |
17 | +q,false);else l(window,"attachEvent")?window.attachEvent("onload",q):C("Window does not have required addEventListener or attachEvent method");return c}}(); | |
18 | +rangy.createModule("DomUtil",function(l,K){function H(c){for(var f=0;c=c.previousSibling;)f++;return f}function I(c,f){var k=[],r;for(r=c;r;r=r.parentNode)k.push(r);for(r=f;r;r=r.parentNode)if(v(k,r))return r;return null}function z(c,f,k){for(k=k?c:c.parentNode;k;){c=k.parentNode;if(c===f)return k;k=c}return null}function C(c){c=c.nodeType;return c==3||c==4||c==8}function N(c,f){var k=f.nextSibling,r=f.parentNode;k?r.insertBefore(c,k):r.appendChild(c);return c}function O(c){if(c.nodeType==9)return c; | |
19 | +else if(typeof c.ownerDocument!="undefined")return c.ownerDocument;else if(typeof c.document!="undefined")return c.document;else if(c.parentNode)return O(c.parentNode);else throw Error("getDocument: no document found for node");}function i(c){if(!c)return"[No node]";return C(c)?'"'+c.data+'"':c.nodeType==1?"<"+c.nodeName+(c.id?' id="'+c.id+'"':"")+">["+c.childNodes.length+"]":c.nodeName}function n(c){this._next=this.root=c}function t(c,f){this.node=c;this.offset=f}function x(c){this.code=this[c]; | |
20 | +this.codeName=c;this.message="DOMException: "+this.codeName}var A=l.util;A.areHostMethods(document,["createDocumentFragment","createElement","createTextNode"])||K.fail("document missing a Node creation method");A.isHostMethod(document,"getElementsByTagName")||K.fail("document missing getElementsByTagName method");var q=document.createElement("div");A.areHostMethods(q,["insertBefore","appendChild","cloneNode"])||K.fail("Incomplete Element implementation");A.isHostProperty(q,"innerHTML")||K.fail("Element is missing innerHTML property"); | |
21 | +q=document.createTextNode("test");A.areHostMethods(q,["splitText","deleteData","insertData","appendData","cloneNode"])||K.fail("Incomplete Text Node implementation");var v=function(c,f){for(var k=c.length;k--;)if(c[k]===f)return true;return false};n.prototype={_current:null,hasNext:function(){return!!this._next},next:function(){var c=this._current=this._next,f;if(this._current)if(f=c.firstChild)this._next=f;else{for(f=null;c!==this.root&&!(f=c.nextSibling);)c=c.parentNode;this._next=f}return this._current}, | |
22 | +detach:function(){this._current=this._next=this.root=null}};t.prototype={equals:function(c){return this.node===c.node&this.offset==c.offset},inspect:function(){return"[DomPosition("+i(this.node)+":"+this.offset+")]"}};x.prototype={INDEX_SIZE_ERR:1,HIERARCHY_REQUEST_ERR:3,WRONG_DOCUMENT_ERR:4,NO_MODIFICATION_ALLOWED_ERR:7,NOT_FOUND_ERR:8,NOT_SUPPORTED_ERR:9,INVALID_STATE_ERR:11};x.prototype.toString=function(){return this.message};l.dom={arrayContains:v,isHtmlNamespace:function(c){var f;return typeof c.namespaceURI== | |
23 | +"undefined"||(f=c.namespaceURI)===null||f=="http://www.w3.org/1999/xhtml"},parentElement:function(c){c=c.parentNode;return c.nodeType==1?c:null},getNodeIndex:H,getNodeLength:function(c){var f;return C(c)?c.length:(f=c.childNodes)?f.length:0},getCommonAncestor:I,isAncestorOf:function(c,f,k){for(f=k?f:f.parentNode;f;)if(f===c)return true;else f=f.parentNode;return false},getClosestAncestorIn:z,isCharacterDataNode:C,insertAfter:N,splitDataNode:function(c,f){var k=c.cloneNode(false);k.deleteData(0,f); | |
24 | +c.deleteData(f,c.length-f);N(k,c);return k},getDocument:O,getWindow:function(c){c=O(c);if(typeof c.defaultView!="undefined")return c.defaultView;else if(typeof c.parentWindow!="undefined")return c.parentWindow;else throw Error("Cannot get a window object for node");},getIframeWindow:function(c){if(typeof c.contentWindow!="undefined")return c.contentWindow;else if(typeof c.contentDocument!="undefined")return c.contentDocument.defaultView;else throw Error("getIframeWindow: No Window object found for iframe element"); | |
25 | +},getIframeDocument:function(c){if(typeof c.contentDocument!="undefined")return c.contentDocument;else if(typeof c.contentWindow!="undefined")return c.contentWindow.document;else throw Error("getIframeWindow: No Document object found for iframe element");},getBody:function(c){return A.isHostObject(c,"body")?c.body:c.getElementsByTagName("body")[0]},getRootContainer:function(c){for(var f;f=c.parentNode;)c=f;return c},comparePoints:function(c,f,k,r){var L;if(c==k)return f===r?0:f<r?-1:1;else if(L=z(k, | |
26 | +c,true))return f<=H(L)?-1:1;else if(L=z(c,k,true))return H(L)<r?-1:1;else{f=I(c,k);c=c===f?f:z(c,f,true);k=k===f?f:z(k,f,true);if(c===k)throw Error("comparePoints got to case 4 and childA and childB are the same!");else{for(f=f.firstChild;f;){if(f===c)return-1;else if(f===k)return 1;f=f.nextSibling}throw Error("Should not be here!");}}},inspectNode:i,fragmentFromNodeChildren:function(c){for(var f=O(c).createDocumentFragment(),k;k=c.firstChild;)f.appendChild(k);return f},createIterator:function(c){return new n(c)}, | |
27 | +DomPosition:t};l.DOMException=x}); | |
28 | +rangy.createModule("DomRange",function(l){function K(a,e){return a.nodeType!=3&&(g.isAncestorOf(a,e.startContainer,true)||g.isAncestorOf(a,e.endContainer,true))}function H(a){return g.getDocument(a.startContainer)}function I(a,e,j){if(e=a._listeners[e])for(var o=0,E=e.length;o<E;++o)e[o].call(a,{target:a,args:j})}function z(a){return new Z(a.parentNode,g.getNodeIndex(a))}function C(a){return new Z(a.parentNode,g.getNodeIndex(a)+1)}function N(a,e,j){var o=a.nodeType==11?a.firstChild:a;if(g.isCharacterDataNode(e))j== | |
29 | +e.length?g.insertAfter(a,e):e.parentNode.insertBefore(a,j==0?e:g.splitDataNode(e,j));else j>=e.childNodes.length?e.appendChild(a):e.insertBefore(a,e.childNodes[j]);return o}function O(a){for(var e,j,o=H(a.range).createDocumentFragment();j=a.next();){e=a.isPartiallySelectedSubtree();j=j.cloneNode(!e);if(e){e=a.getSubtreeIterator();j.appendChild(O(e));e.detach(true)}if(j.nodeType==10)throw new S("HIERARCHY_REQUEST_ERR");o.appendChild(j)}return o}function i(a,e,j){var o,E;for(j=j||{stop:false};o=a.next();)if(a.isPartiallySelectedSubtree())if(e(o)=== | |
30 | +false){j.stop=true;return}else{o=a.getSubtreeIterator();i(o,e,j);o.detach(true);if(j.stop)return}else for(o=g.createIterator(o);E=o.next();)if(e(E)===false){j.stop=true;return}}function n(a){for(var e;a.next();)if(a.isPartiallySelectedSubtree()){e=a.getSubtreeIterator();n(e);e.detach(true)}else a.remove()}function t(a){for(var e,j=H(a.range).createDocumentFragment(),o;e=a.next();){if(a.isPartiallySelectedSubtree()){e=e.cloneNode(false);o=a.getSubtreeIterator();e.appendChild(t(o));o.detach(true)}else a.remove(); | |
31 | +if(e.nodeType==10)throw new S("HIERARCHY_REQUEST_ERR");j.appendChild(e)}return j}function x(a,e,j){var o=!!(e&&e.length),E,T=!!j;if(o)E=RegExp("^("+e.join("|")+")$");var m=[];i(new q(a,false),function(s){if((!o||E.test(s.nodeType))&&(!T||j(s)))m.push(s)});return m}function A(a){return"["+(typeof a.getName=="undefined"?"Range":a.getName())+"("+g.inspectNode(a.startContainer)+":"+a.startOffset+", "+g.inspectNode(a.endContainer)+":"+a.endOffset+")]"}function q(a,e){this.range=a;this.clonePartiallySelectedTextNodes= | |
32 | +e;if(!a.collapsed){this.sc=a.startContainer;this.so=a.startOffset;this.ec=a.endContainer;this.eo=a.endOffset;var j=a.commonAncestorContainer;if(this.sc===this.ec&&g.isCharacterDataNode(this.sc)){this.isSingleCharacterDataNode=true;this._first=this._last=this._next=this.sc}else{this._first=this._next=this.sc===j&&!g.isCharacterDataNode(this.sc)?this.sc.childNodes[this.so]:g.getClosestAncestorIn(this.sc,j,true);this._last=this.ec===j&&!g.isCharacterDataNode(this.ec)?this.ec.childNodes[this.eo-1]:g.getClosestAncestorIn(this.ec, | |
33 | +j,true)}}}function v(a){this.code=this[a];this.codeName=a;this.message="RangeException: "+this.codeName}function c(a,e,j){this.nodes=x(a,e,j);this._next=this.nodes[0];this._position=0}function f(a){return function(e,j){for(var o,E=j?e:e.parentNode;E;){o=E.nodeType;if(g.arrayContains(a,o))return E;E=E.parentNode}return null}}function k(a,e){if(G(a,e))throw new v("INVALID_NODE_TYPE_ERR");}function r(a){if(!a.startContainer)throw new S("INVALID_STATE_ERR");}function L(a,e){if(!g.arrayContains(e,a.nodeType))throw new v("INVALID_NODE_TYPE_ERR"); | |
34 | +}function p(a,e){if(e<0||e>(g.isCharacterDataNode(a)?a.length:a.childNodes.length))throw new S("INDEX_SIZE_ERR");}function u(a,e){if(h(a,true)!==h(e,true))throw new S("WRONG_DOCUMENT_ERR");}function w(a){if(D(a,true))throw new S("NO_MODIFICATION_ALLOWED_ERR");}function B(a,e){if(!a)throw new S(e);}function V(a){return!!a.startContainer&&!!a.endContainer&&!(!g.arrayContains(ba,a.startContainer.nodeType)&&!h(a.startContainer,true))&&!(!g.arrayContains(ba,a.endContainer.nodeType)&&!h(a.endContainer, | |
35 | +true))&&a.startOffset<=(g.isCharacterDataNode(a.startContainer)?a.startContainer.length:a.startContainer.childNodes.length)&&a.endOffset<=(g.isCharacterDataNode(a.endContainer)?a.endContainer.length:a.endContainer.childNodes.length)}function J(a){r(a);if(!V(a))throw Error("Range error: Range is no longer valid after DOM mutation ("+a.inspect()+")");}function ca(){}function Y(a){a.START_TO_START=ia;a.START_TO_END=la;a.END_TO_END=ra;a.END_TO_START=ma;a.NODE_BEFORE=na;a.NODE_AFTER=oa;a.NODE_BEFORE_AND_AFTER= | |
36 | +pa;a.NODE_INSIDE=ja}function W(a){Y(a);Y(a.prototype)}function da(a,e){return function(){J(this);var j=this.startContainer,o=this.startOffset,E=this.commonAncestorContainer,T=new q(this,true);if(j!==E){j=g.getClosestAncestorIn(j,E,true);o=C(j);j=o.node;o=o.offset}i(T,w);T.reset();E=a(T);T.detach();e(this,j,o,j,o);return E}}function fa(a,e,j){function o(m,s){return function(y){r(this);L(y,$);L(d(y),ba);y=(m?z:C)(y);(s?E:T)(this,y.node,y.offset)}}function E(m,s,y){var F=m.endContainer,Q=m.endOffset; | |
37 | +if(s!==m.startContainer||y!==m.startOffset){if(d(s)!=d(F)||g.comparePoints(s,y,F,Q)==1){F=s;Q=y}e(m,s,y,F,Q)}}function T(m,s,y){var F=m.startContainer,Q=m.startOffset;if(s!==m.endContainer||y!==m.endOffset){if(d(s)!=d(F)||g.comparePoints(s,y,F,Q)==-1){F=s;Q=y}e(m,F,Q,s,y)}}a.prototype=new ca;l.util.extend(a.prototype,{setStart:function(m,s){r(this);k(m,true);p(m,s);E(this,m,s)},setEnd:function(m,s){r(this);k(m,true);p(m,s);T(this,m,s)},setStartBefore:o(true,true),setStartAfter:o(false,true),setEndBefore:o(true, | |
38 | +false),setEndAfter:o(false,false),collapse:function(m){J(this);m?e(this,this.startContainer,this.startOffset,this.startContainer,this.startOffset):e(this,this.endContainer,this.endOffset,this.endContainer,this.endOffset)},selectNodeContents:function(m){r(this);k(m,true);e(this,m,0,m,g.getNodeLength(m))},selectNode:function(m){r(this);k(m,false);L(m,$);var s=z(m);m=C(m);e(this,s.node,s.offset,m.node,m.offset)},extractContents:da(t,e),deleteContents:da(n,e),canSurroundContents:function(){J(this);w(this.startContainer); | |
39 | +w(this.endContainer);var m=new q(this,true),s=m._first&&K(m._first,this)||m._last&&K(m._last,this);m.detach();return!s},detach:function(){j(this)},splitBoundaries:function(){J(this);var m=this.startContainer,s=this.startOffset,y=this.endContainer,F=this.endOffset,Q=m===y;g.isCharacterDataNode(y)&&F>0&&F<y.length&&g.splitDataNode(y,F);if(g.isCharacterDataNode(m)&&s>0&&s<m.length){m=g.splitDataNode(m,s);if(Q){F-=s;y=m}else y==m.parentNode&&F>=g.getNodeIndex(m)&&F++;s=0}e(this,m,s,y,F)},normalizeBoundaries:function(){J(this); | |
40 | +var m=this.startContainer,s=this.startOffset,y=this.endContainer,F=this.endOffset,Q=function(U){var R=U.nextSibling;if(R&&R.nodeType==U.nodeType){y=U;F=U.length;U.appendData(R.data);R.parentNode.removeChild(R)}},qa=function(U){var R=U.previousSibling;if(R&&R.nodeType==U.nodeType){m=U;var sa=U.length;s=R.length;U.insertData(0,R.data);R.parentNode.removeChild(R);if(m==y){F+=s;y=m}else if(y==U.parentNode){R=g.getNodeIndex(U);if(F==R){y=U;F=sa}else F>R&&F--}}},ga=true;if(g.isCharacterDataNode(y))y.length== | |
41 | +F&&Q(y);else{if(F>0)(ga=y.childNodes[F-1])&&g.isCharacterDataNode(ga)&&Q(ga);ga=!this.collapsed}if(ga)if(g.isCharacterDataNode(m))s==0&&qa(m);else{if(s<m.childNodes.length)(Q=m.childNodes[s])&&g.isCharacterDataNode(Q)&&qa(Q)}else{m=y;s=F}e(this,m,s,y,F)},collapseToPoint:function(m,s){r(this);k(m,true);p(m,s);if(m!==this.startContainer||s!==this.startOffset||m!==this.endContainer||s!==this.endOffset)e(this,m,s,m,s)}});W(a)}function ea(a){a.collapsed=a.startContainer===a.endContainer&&a.startOffset=== | |
42 | +a.endOffset;a.commonAncestorContainer=a.collapsed?a.startContainer:g.getCommonAncestor(a.startContainer,a.endContainer)}function ha(a,e,j,o,E){var T=a.startContainer!==e||a.startOffset!==j,m=a.endContainer!==o||a.endOffset!==E;a.startContainer=e;a.startOffset=j;a.endContainer=o;a.endOffset=E;ea(a);I(a,"boundarychange",{startMoved:T,endMoved:m})}function M(a){this.startContainer=a;this.startOffset=0;this.endContainer=a;this.endOffset=0;this._listeners={boundarychange:[],detach:[]};ea(this)}l.requireModules(["DomUtil"]); | |
43 | +var g=l.dom,Z=g.DomPosition,S=l.DOMException;q.prototype={_current:null,_next:null,_first:null,_last:null,isSingleCharacterDataNode:false,reset:function(){this._current=null;this._next=this._first},hasNext:function(){return!!this._next},next:function(){var a=this._current=this._next;if(a){this._next=a!==this._last?a.nextSibling:null;if(g.isCharacterDataNode(a)&&this.clonePartiallySelectedTextNodes){if(a===this.ec)(a=a.cloneNode(true)).deleteData(this.eo,a.length-this.eo);if(this._current===this.sc)(a= | |
44 | +a.cloneNode(true)).deleteData(0,this.so)}}return a},remove:function(){var a=this._current,e,j;if(g.isCharacterDataNode(a)&&(a===this.sc||a===this.ec)){e=a===this.sc?this.so:0;j=a===this.ec?this.eo:a.length;e!=j&&a.deleteData(e,j-e)}else a.parentNode&&a.parentNode.removeChild(a)},isPartiallySelectedSubtree:function(){return K(this._current,this.range)},getSubtreeIterator:function(){var a;if(this.isSingleCharacterDataNode){a=this.range.cloneRange();a.collapse()}else{a=new M(H(this.range));var e=this._current, | |
45 | +j=e,o=0,E=e,T=g.getNodeLength(e);if(g.isAncestorOf(e,this.sc,true)){j=this.sc;o=this.so}if(g.isAncestorOf(e,this.ec,true)){E=this.ec;T=this.eo}ha(a,j,o,E,T)}return new q(a,this.clonePartiallySelectedTextNodes)},detach:function(a){a&&this.range.detach();this.range=this._current=this._next=this._first=this._last=this.sc=this.so=this.ec=this.eo=null}};v.prototype={BAD_BOUNDARYPOINTS_ERR:1,INVALID_NODE_TYPE_ERR:2};v.prototype.toString=function(){return this.message};c.prototype={_current:null,hasNext:function(){return!!this._next}, | |
46 | +next:function(){this._current=this._next;this._next=this.nodes[++this._position];return this._current},detach:function(){this._current=this._next=this.nodes=null}};var $=[1,3,4,5,7,8,10],ba=[2,9,11],aa=[1,3,4,5,7,8,10,11],b=[1,3,4,5,7,8],d=g.getRootContainer,h=f([9,11]),D=f([5,6,10,12]),G=f([6,10,12]),P=document.createElement("style"),X=false;try{P.innerHTML="<b>x</b>";X=P.firstChild.nodeType==3}catch(ta){}l.features.htmlParsingConforms=X;var ka=["startContainer","startOffset","endContainer","endOffset", | |
47 | +"collapsed","commonAncestorContainer"],ia=0,la=1,ra=2,ma=3,na=0,oa=1,pa=2,ja=3;ca.prototype={attachListener:function(a,e){this._listeners[a].push(e)},compareBoundaryPoints:function(a,e){J(this);u(this.startContainer,e.startContainer);var j=a==ma||a==ia?"start":"end",o=a==la||a==ia?"start":"end";return g.comparePoints(this[j+"Container"],this[j+"Offset"],e[o+"Container"],e[o+"Offset"])},insertNode:function(a){J(this);L(a,aa);w(this.startContainer);if(g.isAncestorOf(a,this.startContainer,true))throw new S("HIERARCHY_REQUEST_ERR"); | |
48 | +this.setStartBefore(N(a,this.startContainer,this.startOffset))},cloneContents:function(){J(this);var a,e;if(this.collapsed)return H(this).createDocumentFragment();else{if(this.startContainer===this.endContainer&&g.isCharacterDataNode(this.startContainer)){a=this.startContainer.cloneNode(true);a.data=a.data.slice(this.startOffset,this.endOffset);e=H(this).createDocumentFragment();e.appendChild(a);return e}else{e=new q(this,true);a=O(e);e.detach()}return a}},canSurroundContents:function(){J(this);w(this.startContainer); | |
49 | +w(this.endContainer);var a=new q(this,true),e=a._first&&K(a._first,this)||a._last&&K(a._last,this);a.detach();return!e},surroundContents:function(a){L(a,b);if(!this.canSurroundContents())throw new v("BAD_BOUNDARYPOINTS_ERR");var e=this.extractContents();if(a.hasChildNodes())for(;a.lastChild;)a.removeChild(a.lastChild);N(a,this.startContainer,this.startOffset);a.appendChild(e);this.selectNode(a)},cloneRange:function(){J(this);for(var a=new M(H(this)),e=ka.length,j;e--;){j=ka[e];a[j]=this[j]}return a}, | |
50 | +toString:function(){J(this);var a=this.startContainer;if(a===this.endContainer&&g.isCharacterDataNode(a))return a.nodeType==3||a.nodeType==4?a.data.slice(this.startOffset,this.endOffset):"";else{var e=[];a=new q(this,true);i(a,function(j){if(j.nodeType==3||j.nodeType==4)e.push(j.data)});a.detach();return e.join("")}},compareNode:function(a){J(this);var e=a.parentNode,j=g.getNodeIndex(a);if(!e)throw new S("NOT_FOUND_ERR");a=this.comparePoint(e,j);e=this.comparePoint(e,j+1);return a<0?e>0?pa:na:e>0? | |
51 | +oa:ja},comparePoint:function(a,e){J(this);B(a,"HIERARCHY_REQUEST_ERR");u(a,this.startContainer);if(g.comparePoints(a,e,this.startContainer,this.startOffset)<0)return-1;else if(g.comparePoints(a,e,this.endContainer,this.endOffset)>0)return 1;return 0},createContextualFragment:X?function(a){var e=this.startContainer,j=g.getDocument(e);if(!e)throw new S("INVALID_STATE_ERR");var o=null;if(e.nodeType==1)o=e;else if(g.isCharacterDataNode(e))o=g.parentElement(e);o=o===null||o.nodeName=="HTML"&&g.isHtmlNamespace(g.getDocument(o).documentElement)&& | |
52 | +g.isHtmlNamespace(o)?j.createElement("body"):o.cloneNode(false);o.innerHTML=a;return g.fragmentFromNodeChildren(o)}:function(a){r(this);var e=H(this).createElement("body");e.innerHTML=a;return g.fragmentFromNodeChildren(e)},toHtml:function(){J(this);var a=H(this).createElement("div");a.appendChild(this.cloneContents());return a.innerHTML},intersectsNode:function(a,e){J(this);B(a,"NOT_FOUND_ERR");if(g.getDocument(a)!==H(this))return false;var j=a.parentNode,o=g.getNodeIndex(a);B(j,"NOT_FOUND_ERR"); | |
53 | +var E=g.comparePoints(j,o,this.endContainer,this.endOffset);j=g.comparePoints(j,o+1,this.startContainer,this.startOffset);return e?E<=0&&j>=0:E<0&&j>0},isPointInRange:function(a,e){J(this);B(a,"HIERARCHY_REQUEST_ERR");u(a,this.startContainer);return g.comparePoints(a,e,this.startContainer,this.startOffset)>=0&&g.comparePoints(a,e,this.endContainer,this.endOffset)<=0},intersectsRange:function(a,e){J(this);if(H(a)!=H(this))throw new S("WRONG_DOCUMENT_ERR");var j=g.comparePoints(this.startContainer, | |
54 | +this.startOffset,a.endContainer,a.endOffset),o=g.comparePoints(this.endContainer,this.endOffset,a.startContainer,a.startOffset);return e?j<=0&&o>=0:j<0&&o>0},intersection:function(a){if(this.intersectsRange(a)){var e=g.comparePoints(this.startContainer,this.startOffset,a.startContainer,a.startOffset),j=g.comparePoints(this.endContainer,this.endOffset,a.endContainer,a.endOffset),o=this.cloneRange();e==-1&&o.setStart(a.startContainer,a.startOffset);j==1&&o.setEnd(a.endContainer,a.endOffset);return o}return null}, | |
55 | +union:function(a){if(this.intersectsRange(a,true)){var e=this.cloneRange();g.comparePoints(a.startContainer,a.startOffset,this.startContainer,this.startOffset)==-1&&e.setStart(a.startContainer,a.startOffset);g.comparePoints(a.endContainer,a.endOffset,this.endContainer,this.endOffset)==1&&e.setEnd(a.endContainer,a.endOffset);return e}else throw new v("Ranges do not intersect");},containsNode:function(a,e){return e?this.intersectsNode(a,false):this.compareNode(a)==ja},containsNodeContents:function(a){return this.comparePoint(a, | |
56 | +0)>=0&&this.comparePoint(a,g.getNodeLength(a))<=0},containsRange:function(a){return this.intersection(a).equals(a)},containsNodeText:function(a){var e=this.cloneRange();e.selectNode(a);var j=e.getNodes([3]);if(j.length>0){e.setStart(j[0],0);a=j.pop();e.setEnd(a,a.length);a=this.containsRange(e);e.detach();return a}else return this.containsNodeContents(a)},createNodeIterator:function(a,e){J(this);return new c(this,a,e)},getNodes:function(a,e){J(this);return x(this,a,e)},getDocument:function(){return H(this)}, | |
57 | +collapseBefore:function(a){r(this);this.setEndBefore(a);this.collapse(false)},collapseAfter:function(a){r(this);this.setStartAfter(a);this.collapse(true)},getName:function(){return"DomRange"},equals:function(a){return M.rangesEqual(this,a)},isValid:function(){return V(this)},inspect:function(){return A(this)}};fa(M,ha,function(a){r(a);a.startContainer=a.startOffset=a.endContainer=a.endOffset=null;a.collapsed=a.commonAncestorContainer=null;I(a,"detach",null);a._listeners=null});l.rangePrototype=ca.prototype; | |
58 | +M.rangeProperties=ka;M.RangeIterator=q;M.copyComparisonConstants=W;M.createPrototypeRange=fa;M.inspect=A;M.getRangeDocument=H;M.rangesEqual=function(a,e){return a.startContainer===e.startContainer&&a.startOffset===e.startOffset&&a.endContainer===e.endContainer&&a.endOffset===e.endOffset};l.DomRange=M;l.RangeException=v}); | |
59 | +rangy.createModule("WrappedRange",function(l){function K(i,n,t,x){var A=i.duplicate();A.collapse(t);var q=A.parentElement();z.isAncestorOf(n,q,true)||(q=n);if(!q.canHaveHTML)return new C(q.parentNode,z.getNodeIndex(q));n=z.getDocument(q).createElement("span");var v,c=t?"StartToStart":"StartToEnd";do{q.insertBefore(n,n.previousSibling);A.moveToElementText(n)}while((v=A.compareEndPoints(c,i))>0&&n.previousSibling);c=n.nextSibling;if(v==-1&&c&&z.isCharacterDataNode(c)){A.setEndPoint(t?"EndToStart":"EndToEnd", | |
60 | +i);if(/[\r\n]/.test(c.data)){q=A.duplicate();t=q.text.replace(/\r\n/g,"\r").length;for(t=q.moveStart("character",t);q.compareEndPoints("StartToEnd",q)==-1;){t++;q.moveStart("character",1)}}else t=A.text.length;q=new C(c,t)}else{c=(x||!t)&&n.previousSibling;q=(t=(x||t)&&n.nextSibling)&&z.isCharacterDataNode(t)?new C(t,0):c&&z.isCharacterDataNode(c)?new C(c,c.length):new C(q,z.getNodeIndex(n))}n.parentNode.removeChild(n);return q}function H(i,n){var t,x,A=i.offset,q=z.getDocument(i.node),v=q.body.createTextRange(), | |
61 | +c=z.isCharacterDataNode(i.node);if(c){t=i.node;x=t.parentNode}else{t=i.node.childNodes;t=A<t.length?t[A]:null;x=i.node}q=q.createElement("span");q.innerHTML="&#feff;";t?x.insertBefore(q,t):x.appendChild(q);v.moveToElementText(q);v.collapse(!n);x.removeChild(q);if(c)v[n?"moveStart":"moveEnd"]("character",A);return v}l.requireModules(["DomUtil","DomRange"]);var I,z=l.dom,C=z.DomPosition,N=l.DomRange;if(l.features.implementsDomRange&&(!l.features.implementsTextRange||!l.config.preferTextRange)){(function(){function i(f){for(var k= | |
62 | +t.length,r;k--;){r=t[k];f[r]=f.nativeRange[r]}}var n,t=N.rangeProperties,x,A;I=function(f){if(!f)throw Error("Range must be specified");this.nativeRange=f;i(this)};N.createPrototypeRange(I,function(f,k,r,L,p){var u=f.endContainer!==L||f.endOffset!=p;if(f.startContainer!==k||f.startOffset!=r||u){f.setEnd(L,p);f.setStart(k,r)}},function(f){f.nativeRange.detach();f.detached=true;for(var k=t.length,r;k--;){r=t[k];f[r]=null}});n=I.prototype;n.selectNode=function(f){this.nativeRange.selectNode(f);i(this)}; | |
63 | +n.deleteContents=function(){this.nativeRange.deleteContents();i(this)};n.extractContents=function(){var f=this.nativeRange.extractContents();i(this);return f};n.cloneContents=function(){return this.nativeRange.cloneContents()};n.surroundContents=function(f){this.nativeRange.surroundContents(f);i(this)};n.collapse=function(f){this.nativeRange.collapse(f);i(this)};n.cloneRange=function(){return new I(this.nativeRange.cloneRange())};n.refresh=function(){i(this)};n.toString=function(){return this.nativeRange.toString()}; | |
64 | +var q=document.createTextNode("test");z.getBody(document).appendChild(q);var v=document.createRange();v.setStart(q,0);v.setEnd(q,0);try{v.setStart(q,1);x=true;n.setStart=function(f,k){this.nativeRange.setStart(f,k);i(this)};n.setEnd=function(f,k){this.nativeRange.setEnd(f,k);i(this)};A=function(f){return function(k){this.nativeRange[f](k);i(this)}}}catch(c){x=false;n.setStart=function(f,k){try{this.nativeRange.setStart(f,k)}catch(r){this.nativeRange.setEnd(f,k);this.nativeRange.setStart(f,k)}i(this)}; | |
65 | +n.setEnd=function(f,k){try{this.nativeRange.setEnd(f,k)}catch(r){this.nativeRange.setStart(f,k);this.nativeRange.setEnd(f,k)}i(this)};A=function(f,k){return function(r){try{this.nativeRange[f](r)}catch(L){this.nativeRange[k](r);this.nativeRange[f](r)}i(this)}}}n.setStartBefore=A("setStartBefore","setEndBefore");n.setStartAfter=A("setStartAfter","setEndAfter");n.setEndBefore=A("setEndBefore","setStartBefore");n.setEndAfter=A("setEndAfter","setStartAfter");v.selectNodeContents(q);n.selectNodeContents= | |
66 | +v.startContainer==q&&v.endContainer==q&&v.startOffset==0&&v.endOffset==q.length?function(f){this.nativeRange.selectNodeContents(f);i(this)}:function(f){this.setStart(f,0);this.setEnd(f,N.getEndOffset(f))};v.selectNodeContents(q);v.setEnd(q,3);x=document.createRange();x.selectNodeContents(q);x.setEnd(q,4);x.setStart(q,2);n.compareBoundaryPoints=v.compareBoundaryPoints(v.START_TO_END,x)==-1&v.compareBoundaryPoints(v.END_TO_START,x)==1?function(f,k){k=k.nativeRange||k;if(f==k.START_TO_END)f=k.END_TO_START; | |
67 | +else if(f==k.END_TO_START)f=k.START_TO_END;return this.nativeRange.compareBoundaryPoints(f,k)}:function(f,k){return this.nativeRange.compareBoundaryPoints(f,k.nativeRange||k)};if(l.util.isHostMethod(v,"createContextualFragment"))n.createContextualFragment=function(f){return this.nativeRange.createContextualFragment(f)};z.getBody(document).removeChild(q);v.detach();x.detach()})();l.createNativeRange=function(i){i=i||document;return i.createRange()}}else if(l.features.implementsTextRange){I=function(i){this.textRange= | |
68 | +i;this.refresh()};I.prototype=new N(document);I.prototype.refresh=function(){var i,n,t=this.textRange;i=t.parentElement();var x=t.duplicate();x.collapse(true);n=x.parentElement();x=t.duplicate();x.collapse(false);t=x.parentElement();n=n==t?n:z.getCommonAncestor(n,t);n=n==i?n:z.getCommonAncestor(i,n);if(this.textRange.compareEndPoints("StartToEnd",this.textRange)==0)n=i=K(this.textRange,n,true,true);else{i=K(this.textRange,n,true,false);n=K(this.textRange,n,false,false)}this.setStart(i.node,i.offset); | |
69 | +this.setEnd(n.node,n.offset)};N.copyComparisonConstants(I);var O=function(){return this}();if(typeof O.Range=="undefined")O.Range=I;l.createNativeRange=function(i){i=i||document;return i.body.createTextRange()}}if(l.features.implementsTextRange)I.rangeToTextRange=function(i){if(i.collapsed)return H(new C(i.startContainer,i.startOffset),true);else{var n=H(new C(i.startContainer,i.startOffset),true),t=H(new C(i.endContainer,i.endOffset),false);i=z.getDocument(i.startContainer).body.createTextRange(); | |
70 | +i.setEndPoint("StartToStart",n);i.setEndPoint("EndToEnd",t);return i}};I.prototype.getName=function(){return"WrappedRange"};l.WrappedRange=I;l.createRange=function(i){i=i||document;return new I(l.createNativeRange(i))};l.createRangyRange=function(i){i=i||document;return new N(i)};l.createIframeRange=function(i){return l.createRange(z.getIframeDocument(i))};l.createIframeRangyRange=function(i){return l.createRangyRange(z.getIframeDocument(i))};l.addCreateMissingNativeApiListener(function(i){i=i.document; | |
71 | +if(typeof i.createRange=="undefined")i.createRange=function(){return l.createRange(this)};i=i=null})}); | |
72 | +rangy.createModule("WrappedSelection",function(l,K){function H(b){return(b||window).getSelection()}function I(b){return(b||window).document.selection}function z(b,d,h){var D=h?"end":"start";h=h?"start":"end";b.anchorNode=d[D+"Container"];b.anchorOffset=d[D+"Offset"];b.focusNode=d[h+"Container"];b.focusOffset=d[h+"Offset"]}function C(b){b.anchorNode=b.focusNode=null;b.anchorOffset=b.focusOffset=0;b.rangeCount=0;b.isCollapsed=true;b._ranges.length=0}function N(b){var d;if(b instanceof k){d=b._selectionNativeRange; | |
73 | +if(!d){d=l.createNativeRange(c.getDocument(b.startContainer));d.setEnd(b.endContainer,b.endOffset);d.setStart(b.startContainer,b.startOffset);b._selectionNativeRange=d;b.attachListener("detach",function(){this._selectionNativeRange=null})}}else if(b instanceof r)d=b.nativeRange;else if(l.features.implementsDomRange&&b instanceof c.getWindow(b.startContainer).Range)d=b;return d}function O(b){var d=b.getNodes(),h;a:if(!d.length||d[0].nodeType!=1)h=false;else{h=1;for(var D=d.length;h<D;++h)if(!c.isAncestorOf(d[0], | |
74 | +d[h])){h=false;break a}h=true}if(!h)throw Error("getSingleElementFromRange: range "+b.inspect()+" did not consist of a single element");return d[0]}function i(b,d){var h=new r(d);b._ranges=[h];z(b,h,false);b.rangeCount=1;b.isCollapsed=h.collapsed}function n(b){b._ranges.length=0;if(b.docSelection.type=="None")C(b);else{var d=b.docSelection.createRange();if(d&&typeof d.text!="undefined")i(b,d);else{b.rangeCount=d.length;for(var h,D=c.getDocument(d.item(0)),G=0;G<b.rangeCount;++G){h=l.createRange(D); | |
75 | +h.selectNode(d.item(G));b._ranges.push(h)}b.isCollapsed=b.rangeCount==1&&b._ranges[0].collapsed;z(b,b._ranges[b.rangeCount-1],false)}}}function t(b,d){var h=b.docSelection.createRange(),D=O(d),G=c.getDocument(h.item(0));G=c.getBody(G).createControlRange();for(var P=0,X=h.length;P<X;++P)G.add(h.item(P));try{G.add(D)}catch(ta){throw Error("addRange(): Element within the specified Range could not be added to control selection (does it have layout?)");}G.select();n(b)}function x(b,d,h){this.nativeSelection= | |
76 | +b;this.docSelection=d;this._ranges=[];this.win=h;this.refresh()}function A(b,d){var h=c.getDocument(d[0].startContainer);h=c.getBody(h).createControlRange();for(var D=0,G;D<rangeCount;++D){G=O(d[D]);try{h.add(G)}catch(P){throw Error("setRanges(): Element within the one of the specified Ranges could not be added to control selection (does it have layout?)");}}h.select();n(b)}function q(b,d){if(b.anchorNode&&c.getDocument(b.anchorNode)!==c.getDocument(d))throw new L("WRONG_DOCUMENT_ERR");}function v(b){var d= | |
77 | +[],h=new p(b.anchorNode,b.anchorOffset),D=new p(b.focusNode,b.focusOffset),G=typeof b.getName=="function"?b.getName():"Selection";if(typeof b.rangeCount!="undefined")for(var P=0,X=b.rangeCount;P<X;++P)d[P]=k.inspect(b.getRangeAt(P));return"["+G+"(Ranges: "+d.join(", ")+")(anchor: "+h.inspect()+", focus: "+D.inspect()+"]"}l.requireModules(["DomUtil","DomRange","WrappedRange"]);l.config.checkSelectionRanges=true;var c=l.dom,f=l.util,k=l.DomRange,r=l.WrappedRange,L=l.DOMException,p=c.DomPosition,u,w, | |
78 | +B=l.util.isHostMethod(window,"getSelection"),V=l.util.isHostObject(document,"selection"),J=V&&(!B||l.config.preferTextRange);if(J){u=I;l.isSelectionValid=function(b){b=(b||window).document;var d=b.selection;return d.type!="None"||c.getDocument(d.createRange().parentElement())==b}}else if(B){u=H;l.isSelectionValid=function(){return true}}else K.fail("Neither document.selection or window.getSelection() detected.");l.getNativeSelection=u;B=u();var ca=l.createNativeRange(document),Y=c.getBody(document), | |
79 | +W=f.areHostObjects(B,f.areHostProperties(B,["anchorOffset","focusOffset"]));l.features.selectionHasAnchorAndFocus=W;var da=f.isHostMethod(B,"extend");l.features.selectionHasExtend=da;var fa=typeof B.rangeCount=="number";l.features.selectionHasRangeCount=fa;var ea=false,ha=true;f.areHostMethods(B,["addRange","getRangeAt","removeAllRanges"])&&typeof B.rangeCount=="number"&&l.features.implementsDomRange&&function(){var b=document.createElement("iframe");b.frameBorder=0;b.style.position="absolute";b.style.left= | |
80 | +"-10000px";Y.appendChild(b);var d=c.getIframeDocument(b);d.open();d.write("<html><head></head><body>12</body></html>");d.close();var h=c.getIframeWindow(b).getSelection(),D=d.documentElement.lastChild.firstChild;d=d.createRange();d.setStart(D,1);d.collapse(true);h.addRange(d);ha=h.rangeCount==1;h.removeAllRanges();var G=d.cloneRange();d.setStart(D,0);G.setEnd(D,2);h.addRange(d);h.addRange(G);ea=h.rangeCount==2;d.detach();G.detach();Y.removeChild(b)}();l.features.selectionSupportsMultipleRanges=ea; | |
81 | +l.features.collapsedNonEditableSelectionsSupported=ha;var M=false,g;if(Y&&f.isHostMethod(Y,"createControlRange")){g=Y.createControlRange();if(f.areHostProperties(g,["item","add"]))M=true}l.features.implementsControlRange=M;w=W?function(b){return b.anchorNode===b.focusNode&&b.anchorOffset===b.focusOffset}:function(b){return b.rangeCount?b.getRangeAt(b.rangeCount-1).collapsed:false};var Z;if(f.isHostMethod(B,"getRangeAt"))Z=function(b,d){try{return b.getRangeAt(d)}catch(h){return null}};else if(W)Z= | |
82 | +function(b){var d=c.getDocument(b.anchorNode);d=l.createRange(d);d.setStart(b.anchorNode,b.anchorOffset);d.setEnd(b.focusNode,b.focusOffset);if(d.collapsed!==this.isCollapsed){d.setStart(b.focusNode,b.focusOffset);d.setEnd(b.anchorNode,b.anchorOffset)}return d};l.getSelection=function(b){b=b||window;var d=b._rangySelection,h=u(b),D=V?I(b):null;if(d){d.nativeSelection=h;d.docSelection=D;d.refresh(b)}else{d=new x(h,D,b);b._rangySelection=d}return d};l.getIframeSelection=function(b){return l.getSelection(c.getIframeWindow(b))}; | |
83 | +g=x.prototype;if(!J&&W&&f.areHostMethods(B,["removeAllRanges","addRange"])){g.removeAllRanges=function(){this.nativeSelection.removeAllRanges();C(this)};var S=function(b,d){var h=k.getRangeDocument(d);h=l.createRange(h);h.collapseToPoint(d.endContainer,d.endOffset);b.nativeSelection.addRange(N(h));b.nativeSelection.extend(d.startContainer,d.startOffset);b.refresh()};g.addRange=fa?function(b,d){if(M&&V&&this.docSelection.type=="Control")t(this,b);else if(d&&da)S(this,b);else{var h;if(ea)h=this.rangeCount; | |
84 | +else{this.removeAllRanges();h=0}this.nativeSelection.addRange(N(b));this.rangeCount=this.nativeSelection.rangeCount;if(this.rangeCount==h+1){if(l.config.checkSelectionRanges)if((h=Z(this.nativeSelection,this.rangeCount-1))&&!k.rangesEqual(h,b))b=new r(h);this._ranges[this.rangeCount-1]=b;z(this,b,aa(this.nativeSelection));this.isCollapsed=w(this)}else this.refresh()}}:function(b,d){if(d&&da)S(this,b);else{this.nativeSelection.addRange(N(b));this.refresh()}};g.setRanges=function(b){if(M&&b.length> | |
85 | +1)A(this,b);else{this.removeAllRanges();for(var d=0,h=b.length;d<h;++d)this.addRange(b[d])}}}else if(f.isHostMethod(B,"empty")&&f.isHostMethod(ca,"select")&&M&&J){g.removeAllRanges=function(){try{this.docSelection.empty();if(this.docSelection.type!="None"){var b;if(this.anchorNode)b=c.getDocument(this.anchorNode);else if(this.docSelection.type=="Control"){var d=this.docSelection.createRange();if(d.length)b=c.getDocument(d.item(0)).body.createTextRange()}if(b){b.body.createTextRange().select();this.docSelection.empty()}}}catch(h){}C(this)}; | |
86 | +g.addRange=function(b){if(this.docSelection.type=="Control")t(this,b);else{r.rangeToTextRange(b).select();this._ranges[0]=b;this.rangeCount=1;this.isCollapsed=this._ranges[0].collapsed;z(this,b,false)}};g.setRanges=function(b){this.removeAllRanges();var d=b.length;if(d>1)A(this,b);else d&&this.addRange(b[0])}}else{K.fail("No means of selecting a Range or TextRange was found");return false}g.getRangeAt=function(b){if(b<0||b>=this.rangeCount)throw new L("INDEX_SIZE_ERR");else return this._ranges[b]}; | |
87 | +var $;if(J)$=function(b){var d;if(l.isSelectionValid(b.win))d=b.docSelection.createRange();else{d=c.getBody(b.win.document).createTextRange();d.collapse(true)}if(b.docSelection.type=="Control")n(b);else d&&typeof d.text!="undefined"?i(b,d):C(b)};else if(f.isHostMethod(B,"getRangeAt")&&typeof B.rangeCount=="number")$=function(b){if(M&&V&&b.docSelection.type=="Control")n(b);else{b._ranges.length=b.rangeCount=b.nativeSelection.rangeCount;if(b.rangeCount){for(var d=0,h=b.rangeCount;d<h;++d)b._ranges[d]= | |
88 | +new l.WrappedRange(b.nativeSelection.getRangeAt(d));z(b,b._ranges[b.rangeCount-1],aa(b.nativeSelection));b.isCollapsed=w(b)}else C(b)}};else if(W&&typeof B.isCollapsed=="boolean"&&typeof ca.collapsed=="boolean"&&l.features.implementsDomRange)$=function(b){var d;d=b.nativeSelection;if(d.anchorNode){d=Z(d,0);b._ranges=[d];b.rangeCount=1;d=b.nativeSelection;b.anchorNode=d.anchorNode;b.anchorOffset=d.anchorOffset;b.focusNode=d.focusNode;b.focusOffset=d.focusOffset;b.isCollapsed=w(b)}else C(b)};else{K.fail("No means of obtaining a Range or TextRange from the user's selection was found"); | |
89 | +return false}g.refresh=function(b){var d=b?this._ranges.slice(0):null;$(this);if(b){b=d.length;if(b!=this._ranges.length)return false;for(;b--;)if(!k.rangesEqual(d[b],this._ranges[b]))return false;return true}};var ba=function(b,d){var h=b.getAllRanges(),D=false;b.removeAllRanges();for(var G=0,P=h.length;G<P;++G)if(D||d!==h[G])b.addRange(h[G]);else D=true;b.rangeCount||C(b)};g.removeRange=M?function(b){if(this.docSelection.type=="Control"){var d=this.docSelection.createRange();b=O(b);var h=c.getDocument(d.item(0)); | |
90 | +h=c.getBody(h).createControlRange();for(var D,G=false,P=0,X=d.length;P<X;++P){D=d.item(P);if(D!==b||G)h.add(d.item(P));else G=true}h.select();n(this)}else ba(this,b)}:function(b){ba(this,b)};var aa;if(!J&&W&&l.features.implementsDomRange){aa=function(b){var d=false;if(b.anchorNode)d=c.comparePoints(b.anchorNode,b.anchorOffset,b.focusNode,b.focusOffset)==1;return d};g.isBackwards=function(){return aa(this)}}else aa=g.isBackwards=function(){return false};g.toString=function(){for(var b=[],d=0,h=this.rangeCount;d< | |
91 | +h;++d)b[d]=""+this._ranges[d];return b.join("")};g.collapse=function(b,d){q(this,b);var h=l.createRange(c.getDocument(b));h.collapseToPoint(b,d);this.removeAllRanges();this.addRange(h);this.isCollapsed=true};g.collapseToStart=function(){if(this.rangeCount){var b=this._ranges[0];this.collapse(b.startContainer,b.startOffset)}else throw new L("INVALID_STATE_ERR");};g.collapseToEnd=function(){if(this.rangeCount){var b=this._ranges[this.rangeCount-1];this.collapse(b.endContainer,b.endOffset)}else throw new L("INVALID_STATE_ERR"); | |
92 | +};g.selectAllChildren=function(b){q(this,b);var d=l.createRange(c.getDocument(b));d.selectNodeContents(b);this.removeAllRanges();this.addRange(d)};g.deleteFromDocument=function(){if(M&&V&&this.docSelection.type=="Control"){for(var b=this.docSelection.createRange(),d;b.length;){d=b.item(0);b.remove(d);d.parentNode.removeChild(d)}this.refresh()}else if(this.rangeCount){b=this.getAllRanges();this.removeAllRanges();d=0;for(var h=b.length;d<h;++d)b[d].deleteContents();this.addRange(b[h-1])}};g.getAllRanges= | |
93 | +function(){return this._ranges.slice(0)};g.setSingleRange=function(b){this.setRanges([b])};g.containsNode=function(b,d){for(var h=0,D=this._ranges.length;h<D;++h)if(this._ranges[h].containsNode(b,d))return true;return false};g.toHtml=function(){var b="";if(this.rangeCount){b=k.getRangeDocument(this._ranges[0]).createElement("div");for(var d=0,h=this._ranges.length;d<h;++d)b.appendChild(this._ranges[d].cloneContents());b=b.innerHTML}return b};g.getName=function(){return"WrappedSelection"};g.inspect= | |
94 | +function(){return v(this)};g.detach=function(){this.win=this.anchorNode=this.focusNode=this.win._rangySelection=null};x.inspect=v;l.Selection=x;l.selectionPrototype=g;l.addCreateMissingNativeApiListener(function(b){if(typeof b.getSelection=="undefined")b.getSelection=function(){return l.getSelection(this)};b=null})}); | |
0 | 95 | \ No newline at end of file | ... | ... |
... | ... | @@ -0,0 +1,32 @@ |
1 | +/* | |
2 | + CSS Class Applier module for Rangy. | |
3 | + Adds, removes and toggles CSS classes on Ranges and Selections | |
4 | + | |
5 | + Part of Rangy, a cross-browser JavaScript range and selection library | |
6 | + http://code.google.com/p/rangy/ | |
7 | + | |
8 | + Depends on Rangy core. | |
9 | + | |
10 | + Copyright 2012, Tim Down | |
11 | + Licensed under the MIT license. | |
12 | + Version: 1.2.3 | |
13 | + Build date: 26 February 2012 | |
14 | +*/ | |
15 | +rangy.createModule("CssClassApplier",function(i,v){function r(a,b){return a.className&&RegExp("(?:^|\\s)"+b+"(?:\\s|$)").test(a.className)}function s(a,b){if(a.className)r(a,b)||(a.className+=" "+b);else a.className=b}function o(a){return a.split(/\s+/).sort().join(" ")}function w(a,b){return o(a.className)==o(b.className)}function x(a){for(var b=a.parentNode;a.hasChildNodes();)b.insertBefore(a.firstChild,a);b.removeChild(a)}function y(a,b){var c=a.cloneRange();c.selectNodeContents(b);var d=c.intersection(a); | |
16 | +d=d?d.toString():"";c.detach();return d!=""}function z(a){return a.getNodes([3],function(b){return y(a,b)})}function A(a,b){if(a.attributes.length!=b.attributes.length)return false;for(var c=0,d=a.attributes.length,e,f;c<d;++c){e=a.attributes[c];f=e.name;if(f!="class"){f=b.attributes.getNamedItem(f);if(e.specified!=f.specified)return false;if(e.specified&&e.nodeValue!==f.nodeValue)return false}}return true}function B(a,b){for(var c=0,d=a.attributes.length,e;c<d;++c){e=a.attributes[c].name;if(!(b&& | |
17 | +h.arrayContains(b,e))&&a.attributes[c].specified&&e!="class")return true}return false}function C(a){var b;return a&&a.nodeType==1&&((b=a.parentNode)&&b.nodeType==9&&b.designMode=="on"||k(a)&&!k(a.parentNode))}function D(a){return(k(a)||a.nodeType!=1&&k(a.parentNode))&&!C(a)}function E(a){return a&&a.nodeType==1&&!M.test(p(a,"display"))}function N(a){if(a.data.length==0)return true;if(O.test(a.data))return false;switch(p(a.parentNode,"whiteSpace")){case "pre":case "pre-wrap":case "-moz-pre-wrap":return false; | |
18 | +case "pre-line":if(/[\r\n]/.test(a.data))return false}return E(a.previousSibling)||E(a.nextSibling)}function m(a,b,c,d){var e,f=c==0;if(h.isAncestorOf(b,a))return a;if(h.isCharacterDataNode(b))if(c==0){c=h.getNodeIndex(b);b=b.parentNode}else if(c==b.length){c=h.getNodeIndex(b)+1;b=b.parentNode}else throw v.createError("splitNodeAt should not be called with offset in the middle of a data node ("+c+" in "+b.data);var g;g=b;var j=c;g=h.isCharacterDataNode(g)?j==0?!!g.previousSibling:j==g.length?!!g.nextSibling: | |
19 | +true:j>0&&j<g.childNodes.length;if(g){if(!e){e=b.cloneNode(false);for(e.id&&e.removeAttribute("id");f=b.childNodes[c];)e.appendChild(f);h.insertAfter(e,b)}return b==a?e:m(a,e.parentNode,h.getNodeIndex(e),d)}else if(a!=b){e=b.parentNode;b=h.getNodeIndex(b);f||b++;return m(a,e,b,d)}return a}function F(a){var b=a?"nextSibling":"previousSibling";return function(c,d){var e=c.parentNode,f=c[b];if(f){if(f&&f.nodeType==3)return f}else if(d)if((f=e[b])&&f.nodeType==1&&e.tagName==f.tagName&&w(e,f)&&A(e,f))return f[a? | |
20 | +"firstChild":"lastChild"];return null}}function t(a){this.firstTextNode=(this.isElementMerge=a.nodeType==1)?a.lastChild:a;this.textNodes=[this.firstTextNode]}function q(a,b,c){this.cssClass=a;var d,e,f=null;if(typeof b=="object"&&b!==null){c=b.tagNames;f=b.elementProperties;for(d=0;e=P[d++];)if(b.hasOwnProperty(e))this[e]=b[e];d=b.normalize}else d=b;this.normalize=typeof d=="undefined"?true:d;this.attrExceptions=[];d=document.createElement(this.elementTagName);this.elementProperties={};for(var g in f)if(f.hasOwnProperty(g)){if(G.hasOwnProperty(g))g= | |
21 | +G[g];d[g]=f[g];this.elementProperties[g]=d[g];this.attrExceptions.push(g)}this.elementSortedClassName=this.elementProperties.hasOwnProperty("className")?o(this.elementProperties.className+" "+a):a;this.applyToAnyTagName=false;a=typeof c;if(a=="string")if(c=="*")this.applyToAnyTagName=true;else this.tagNames=c.toLowerCase().replace(/^\s\s*/,"").replace(/\s\s*$/,"").split(/\s*,\s*/);else if(a=="object"&&typeof c.length=="number"){this.tagNames=[];d=0;for(a=c.length;d<a;++d)if(c[d]=="*")this.applyToAnyTagName= | |
22 | +true;else this.tagNames.push(c[d].toLowerCase())}else this.tagNames=[this.elementTagName]}i.requireModules(["WrappedSelection","WrappedRange"]);var h=i.dom,H=function(){function a(b,c,d){return c&&d?" ":""}return function(b,c){if(b.className)b.className=b.className.replace(RegExp("(?:^|\\s)"+c+"(?:\\s|$)"),a)}}(),p;if(typeof window.getComputedStyle!="undefined")p=function(a,b){return h.getWindow(a).getComputedStyle(a,null)[b]};else if(typeof document.documentElement.currentStyle!="undefined")p=function(a, | |
23 | +b){return a.currentStyle[b]};else v.fail("No means of obtaining computed style properties found");var k;(function(){k=typeof document.createElement("div").isContentEditable=="boolean"?function(a){return a&&a.nodeType==1&&a.isContentEditable}:function(a){if(!a||a.nodeType!=1||a.contentEditable=="false")return false;return a.contentEditable=="true"||k(a.parentNode)}})();var M=/^inline(-block|-table)?$/i,O=/[^\r\n\t\f \u200B]/,Q=F(false),R=F(true);t.prototype={doMerge:function(){for(var a=[],b,c,d=0, | |
24 | +e=this.textNodes.length;d<e;++d){b=this.textNodes[d];c=b.parentNode;a[d]=b.data;if(d){c.removeChild(b);c.hasChildNodes()||c.parentNode.removeChild(c)}}return this.firstTextNode.data=a=a.join("")},getLength:function(){for(var a=this.textNodes.length,b=0;a--;)b+=this.textNodes[a].length;return b},toString:function(){for(var a=[],b=0,c=this.textNodes.length;b<c;++b)a[b]="'"+this.textNodes[b].data+"'";return"[Merge("+a.join(",")+")]"}};var P=["elementTagName","ignoreWhiteSpace","applyToEditableOnly"], | |
25 | +G={"class":"className"};q.prototype={elementTagName:"span",elementProperties:{},ignoreWhiteSpace:true,applyToEditableOnly:false,hasClass:function(a){return a.nodeType==1&&h.arrayContains(this.tagNames,a.tagName.toLowerCase())&&r(a,this.cssClass)},getSelfOrAncestorWithClass:function(a){for(;a;){if(this.hasClass(a,this.cssClass))return a;a=a.parentNode}return null},isModifiable:function(a){return!this.applyToEditableOnly||D(a)},isIgnorableWhiteSpaceNode:function(a){return this.ignoreWhiteSpace&&a&& | |
26 | +a.nodeType==3&&N(a)},postApply:function(a,b,c){for(var d=a[0],e=a[a.length-1],f=[],g,j=d,I=e,J=0,K=e.length,n,L,l=0,u=a.length;l<u;++l){n=a[l];if(L=Q(n,!c)){if(!g){g=new t(L);f.push(g)}g.textNodes.push(n);if(n===d){j=g.firstTextNode;J=j.length}if(n===e){I=g.firstTextNode;K=g.getLength()}}else g=null}if(a=R(e,!c)){if(!g){g=new t(e);f.push(g)}g.textNodes.push(a)}if(f.length){l=0;for(u=f.length;l<u;++l)f[l].doMerge();b.setStart(j,J);b.setEnd(I,K)}},createContainer:function(a){a=a.createElement(this.elementTagName); | |
27 | +i.util.extend(a,this.elementProperties);s(a,this.cssClass);return a},applyToTextNode:function(a){var b=a.parentNode;if(b.childNodes.length==1&&h.arrayContains(this.tagNames,b.tagName.toLowerCase()))s(b,this.cssClass);else{b=this.createContainer(h.getDocument(a));a.parentNode.insertBefore(b,a);b.appendChild(a)}},isRemovable:function(a){var b;if(b=a.tagName.toLowerCase()==this.elementTagName){if(b=o(a.className)==this.elementSortedClassName){var c;a:{b=this.elementProperties;for(c in b)if(b.hasOwnProperty(c)&& | |
28 | +a[c]!==b[c]){c=false;break a}c=true}b=c&&!B(a,this.attrExceptions)&&this.isModifiable(a)}b=b}return b},undoToTextNode:function(a,b,c){if(!b.containsNode(c)){a=b.cloneRange();a.selectNode(c);if(a.isPointInRange(b.endContainer,b.endOffset)){m(c,b.endContainer,b.endOffset,[b]);b.setEndAfter(c)}if(a.isPointInRange(b.startContainer,b.startOffset))c=m(c,b.startContainer,b.startOffset,[b])}this.isRemovable(c)?x(c):H(c,this.cssClass)},applyToRange:function(a){a.splitBoundaries();var b=z(a);if(b.length){for(var c, | |
29 | +d=0,e=b.length;d<e;++d){c=b[d];!this.isIgnorableWhiteSpaceNode(c)&&!this.getSelfOrAncestorWithClass(c)&&this.isModifiable(c)&&this.applyToTextNode(c)}a.setStart(b[0],0);c=b[b.length-1];a.setEnd(c,c.length);this.normalize&&this.postApply(b,a,false)}},applyToSelection:function(a){a=a||window;a=i.getSelection(a);var b,c=a.getAllRanges();a.removeAllRanges();for(var d=c.length;d--;){b=c[d];this.applyToRange(b);a.addRange(b)}},undoToRange:function(a){a.splitBoundaries();var b=z(a),c,d,e=b[b.length-1];if(b.length){for(var f= | |
30 | +0,g=b.length;f<g;++f){c=b[f];(d=this.getSelfOrAncestorWithClass(c))&&this.isModifiable(c)&&this.undoToTextNode(c,a,d);a.setStart(b[0],0);a.setEnd(e,e.length)}this.normalize&&this.postApply(b,a,true)}},undoToSelection:function(a){a=a||window;a=i.getSelection(a);var b=a.getAllRanges(),c;a.removeAllRanges();for(var d=0,e=b.length;d<e;++d){c=b[d];this.undoToRange(c);a.addRange(c)}},getTextSelectedByRange:function(a,b){var c=b.cloneRange();c.selectNodeContents(a);var d=c.intersection(b);d=d?d.toString(): | |
31 | +"";c.detach();return d},isAppliedToRange:function(a){if(a.collapsed)return!!this.getSelfOrAncestorWithClass(a.commonAncestorContainer);else{for(var b=a.getNodes([3]),c=0,d;d=b[c++];)if(!this.isIgnorableWhiteSpaceNode(d)&&y(a,d)&&this.isModifiable(d)&&!this.getSelfOrAncestorWithClass(d))return false;return true}},isAppliedToSelection:function(a){a=a||window;a=i.getSelection(a).getAllRanges();for(var b=a.length;b--;)if(!this.isAppliedToRange(a[b]))return false;return true},toggleRange:function(a){this.isAppliedToRange(a)? | |
32 | +this.undoToRange(a):this.applyToRange(a)},toggleSelection:function(a){this.isAppliedToSelection(a)?this.undoToSelection(a):this.applyToSelection(a)},detach:function(){}};q.util={hasClass:r,addClass:s,removeClass:H,hasSameClasses:w,replaceWithOwnChildren:x,elementsHaveSameNonClassAttributes:A,elementHasNonClassAttributes:B,splitNodeAt:m,isEditableElement:k,isEditingHost:C,isEditable:D};i.CssClassApplier=q;i.createCssClassApplier=function(a,b,c){return new q(a,b,c)}}); | |
0 | 33 | \ No newline at end of file | ... | ... |
... | ... | @@ -0,0 +1,23 @@ |
1 | +/* | |
2 | + Serializer module for Rangy. | |
3 | + Serializes Ranges and Selections. An example use would be to store a user's selection on a particular page in a | |
4 | + cookie or local storage and restore it on the user's next visit to the same page. | |
5 | + | |
6 | + Part of Rangy, a cross-browser JavaScript range and selection library | |
7 | + http://code.google.com/p/rangy/ | |
8 | + | |
9 | + Depends on Rangy core. | |
10 | + | |
11 | + Copyright 2012, Tim Down | |
12 | + Licensed under the MIT license. | |
13 | + Version: 1.2.3 | |
14 | + Build date: 26 February 2012 | |
15 | +*/ | |
16 | +rangy.createModule("Serializer",function(g,n){function o(c,a){a=a||[];var b=c.nodeType,e=c.childNodes,d=e.length,f=[b,c.nodeName,d].join(":"),h="",k="";switch(b){case 3:h=c.nodeValue.replace(/</g,"<").replace(/>/g,">");break;case 8:h="<!--"+c.nodeValue.replace(/</g,"<").replace(/>/g,">")+"--\>";break;default:h="<"+f+">";k="</>";break}h&&a.push(h);for(b=0;b<d;++b)o(e[b],a);k&&a.push(k);return a}function j(c){c=o(c).join("");return u(c).toString(16)}function l(c,a,b){var e=[],d=c;for(b= | |
17 | +b||i.getDocument(c).documentElement;d&&d!=b;){e.push(i.getNodeIndex(d,true));d=d.parentNode}return e.join("/")+":"+a}function m(c,a,b){if(a)b||i.getDocument(a);else{b=b||document;a=b.documentElement}c=c.split(":");a=a;b=c[0]?c[0].split("/"):[];for(var e=b.length,d;e--;){d=parseInt(b[e],10);if(d<a.childNodes.length)a=a.childNodes[parseInt(b[e],10)];else throw n.createError("deserializePosition failed: node "+i.inspectNode(a)+" has no child with index "+d+", "+e);}return new i.DomPosition(a,parseInt(c[1], | |
18 | +10))}function p(c,a,b){b=b||g.DomRange.getRangeDocument(c).documentElement;if(!i.isAncestorOf(b,c.commonAncestorContainer,true))throw Error("serializeRange: range is not wholly contained within specified root node");c=l(c.startContainer,c.startOffset,b)+","+l(c.endContainer,c.endOffset,b);a||(c+="{"+j(b)+"}");return c}function q(c,a,b){if(a)b=b||i.getDocument(a);else{b=b||document;a=b.documentElement}c=/^([^,]+),([^,\{]+)({([^}]+)})?$/.exec(c);var e=c[4],d=j(a);if(e&&e!==j(a))throw Error("deserializeRange: checksums of serialized range root node ("+ | |
19 | +e+") and target root node ("+d+") do not match");e=m(c[1],a,b);a=m(c[2],a,b);b=g.createRange(b);b.setStart(e.node,e.offset);b.setEnd(a.node,a.offset);return b}function r(c,a,b){if(a)b||i.getDocument(a);else{b=b||document;a=b.documentElement}c=/^([^,]+),([^,]+)({([^}]+)})?$/.exec(c)[3];return!c||c===j(a)}function s(c,a,b){c=c||g.getSelection();c=c.getAllRanges();for(var e=[],d=0,f=c.length;d<f;++d)e[d]=p(c[d],a,b);return e.join("|")}function t(c,a,b){if(a)b=b||i.getWindow(a);else{b=b||window;a=b.document.documentElement}c= | |
20 | +c.split("|");for(var e=g.getSelection(b),d=[],f=0,h=c.length;f<h;++f)d[f]=q(c[f],a,b.document);e.setRanges(d);return e}g.requireModules(["WrappedSelection","WrappedRange"]);if(typeof encodeURIComponent=="undefined"||typeof decodeURIComponent=="undefined")n.fail("Global object is missing encodeURIComponent and/or decodeURIComponent method");var u=function(){var c=null;return function(a){for(var b=[],e=0,d=a.length,f;e<d;++e){f=a.charCodeAt(e);if(f<128)b.push(f);else f<2048?b.push(f>>6|192,f&63|128): | |
21 | +b.push(f>>12|224,f>>6&63|128,f&63|128)}a=-1;if(!c){e=[];d=0;for(var h;d<256;++d){h=d;for(f=8;f--;)if((h&1)==1)h=h>>>1^3988292384;else h>>>=1;e[d]=h>>>0}c=e}e=c;d=0;for(f=b.length;d<f;++d){h=(a^b[d])&255;a=a>>>8^e[h]}return(a^-1)>>>0}}(),i=g.dom;g.serializePosition=l;g.deserializePosition=m;g.serializeRange=p;g.deserializeRange=q;g.canDeserializeRange=r;g.serializeSelection=s;g.deserializeSelection=t;g.canDeserializeSelection=function(c,a,b){var e;if(a)e=b?b.document:i.getDocument(a);else{b=b||window; | |
22 | +a=b.document.documentElement}c=c.split("|");b=0;for(var d=c.length;b<d;++b)if(!r(c[b],a,e))return false;return true};g.restoreSelectionFromCookie=function(c){c=c||window;var a;a:{a=c.document.cookie.split(/[;,]/);for(var b=0,e=a.length,d;b<e;++b){d=a[b].split("=");if(d[0].replace(/^\s+/,"")=="rangySerializedSelection")if(d=d[1]){a=decodeURIComponent(d.replace(/\s+$/,""));break a}}a=null}a&&t(a,c.doc)};g.saveSelectionCookie=function(c,a){c=c||window;a=typeof a=="object"?a:{};var b=a.expires?";expires="+ | |
23 | +a.expires.toUTCString():"",e=a.path?";path="+a.path:"",d=a.domain?";domain="+a.domain:"",f=a.secure?";secure":"",h=s(g.getSelection(c));c.document.cookie=encodeURIComponent("rangySerializedSelection")+"="+encodeURIComponent(h)+b+e+d+f};g.getElementChecksum=j}); | |
0 | 24 | \ No newline at end of file | ... | ... |
public/style.css
... | ... | @@ -5,3 +5,21 @@ div.article-comments-list-more{ |
5 | 5 | font-size: 20px; |
6 | 6 | margin-bottom: 5px; |
7 | 7 | } |
8 | + | |
9 | +.popBox_comment_paragraph { | |
10 | + position: absolute; | |
11 | + z-index: 2; | |
12 | + background: #cccccc; | |
13 | + width: 60px; | |
14 | + padding: 0.3em; | |
15 | + position: absolute;border: 1px solid gray; | |
16 | +} | |
17 | + | |
18 | +.span_comment_paragraph { | |
19 | + color: red; | |
20 | + font-weight: bold; | |
21 | +} | |
22 | + | |
23 | +.commented-area { | |
24 | + background-color: yellow; | |
25 | +} | |
8 | 26 | \ No newline at end of file | ... | ... |
views/comment_paragraph_plugin_profile/_comment_paragraph.html.erb
1 | 1 | <div class="comments"> |
2 | - <textarea id="comment_area_<%= paragraph_id %>" readonly="true" cols="60" style="border: none;text-align: justify" class='autoexpand-text-area'> | |
2 | + <div class="comment_paragraph" id="comment_paragraph_<%= paragraph_id %>" > | |
3 | 3 | <%= inner_html %> |
4 | - </textarea> | |
5 | - <script> | |
6 | - jQuery("#comment_area_<%= paragraph_id %>").mouseup(function() { | |
7 | - var selected_area=getSelectionBounderies("comment_area_<%= paragraph_id %>") | |
8 | - form = jQuery('.comment_paragraph_<%= paragraph_id %>').parent().find('form'); | |
9 | - if (form.find('input.selected_area').length === 0){ | |
10 | - jQuery('<input>').attr({ | |
11 | - class: 'selected_area', | |
12 | - name: 'comment[comment_paragraph_selected_area]', | |
13 | - value: selected_area | |
14 | - }).appendTo(form) | |
15 | - }else{ | |
16 | - form.find('input.selected_area').val(selected_area) | |
17 | - } | |
18 | - }); | |
19 | - </script> | |
20 | - <div class="comment_paragraph_<%= paragraph_id %>" align="center"> | |
4 | + </div> | |
5 | + <BR><BR><BR> | |
6 | + <div align="center"> | |
21 | 7 | <%= link_to_remote(image_tag("/plugins/comment_paragraph/images/comments.gif"), |
22 | 8 | :url => { :profile => profile_identifier, :controller => 'comment_paragraph_plugin_profile', :action => 'view_comments', :paragraph_id => paragraph_id, :article_id => article_id}, |
23 | 9 | :method => :post, | ... | ... |