X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fludivine-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fplugins%2Flineutils%2Fplugin.js;fp=sources%2Fplugins%2Flineutils%2Fplugin.js;h=d84c5f3ebd045b634d2666180541d395ea139286;hp=e0473eebef611cd0a0bf7ca3e06492313e92c14c;hb=1794320dcfdfcd19572fb1676294f9853a6bbc20;hpb=7183f6a6a21ad9124e70c997e0168459f377a9f2 diff --git a/sources/plugins/lineutils/plugin.js b/sources/plugins/lineutils/plugin.js index e0473ee..d84c5f3 100644 --- a/sources/plugins/lineutils/plugin.js +++ b/sources/plugins/lineutils/plugin.js @@ -379,7 +379,7 @@ continue; } - // On IE8 element.getElementsByTagName returns comments... sic! (#13176) + // On IE8 element.getElementsByTagName returns comments... sic! (http://dev.ckeditor.com/ticket/13176) if ( el.type != CKEDITOR.NODE_ELEMENT ) { continue; } @@ -840,7 +840,7 @@ // Let's calculate the vertical position of the line. if ( this.inline ) { - // (#13155) + // (http://dev.ckeditor.com/ticket/13155) styles.top = loc + this.winTopScroll.y - this.rect.relativeY; } else { styles.top = this.rect.top + this.winTopScroll.y + loc; @@ -853,7 +853,7 @@ // Now let's calculate the horizontal alignment (left and width). if ( this.inline ) { - // (#13155) + // (http://dev.ckeditor.com/ticket/13155) styles.left = rel.elementRect.left - this.rect.relativeX; } else { if ( rel.elementRect.left > 0 ) @@ -939,13 +939,13 @@ this.winTopScroll = this.winTop.getScrollPosition(); this.winTopPane = this.winTop.getViewPaneSize(); - // (#13155) + // (http://dev.ckeditor.com/ticket/13155) this.rect = this.getClientRect( this.inline ? this.editable : this.frame ); }, /** * Returns `boundingClientRect` of an element, shifted by the position - * of `container` when the container is not `static` (#13155). + * of `container` when the container is not `static` (http://dev.ckeditor.com/ticket/13155). * * See also: {@link CKEDITOR.dom.element#getClientRect}. *