X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fpiedsjaloux-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fcore%2Fdom%2Fdomobject.js;fp=sources%2Fcore%2Fdom%2Fdomobject.js;h=f4e258ae18b62241361889acdc0504f8b3f1050e;hp=607e9f3c40e59cedec2f87bf3a34d35280e70d79;hb=317f8f8f0651488f226b5280a8f036c7c135c639;hpb=1096cdefb1c9a3f3c4ca6807e272da6c92e5ed9c diff --git a/sources/core/dom/domobject.js b/sources/core/dom/domobject.js index 607e9f3..f4e258a 100644 --- a/sources/core/dom/domobject.js +++ b/sources/core/dom/domobject.js @@ -1,5 +1,5 @@ /** - * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. + * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ @@ -41,7 +41,7 @@ CKEDITOR.dom.domObject.prototype = ( function() { return function( domEvent ) { // In FF, when reloading the page with the editor focused, it may // throw an error because the CKEDITOR global is not anymore - // available. So, we check it here first. (#2923) + // available. So, we check it here first. (http://dev.ckeditor.com/ticket/2923) if ( typeof CKEDITOR != 'undefined' ) domObject.fire( eventName, new CKEDITOR.dom.event( domEvent ) ); }; @@ -138,7 +138,7 @@ CKEDITOR.dom.domObject.prototype = ( function() { } // Remove events from events object so fire() method will not call - // listeners (#11400). + // listeners (http://dev.ckeditor.com/ticket/11400). CKEDITOR.event.prototype.removeAllListeners.call( this ); } };