Custom Query
Results (801 - 900 of 1835)
Ticket | Summary | Keywords | Owner | Type | Status | Priority |
---|---|---|---|---|---|---|
#2847 | Slovak language file updates and changes | Confirmed | Bug | closed | Normal | |
Description |
I'm attaching a language file update for the Slovak language. Contributed by Gabriel Kiš (Thanks!). |
|||||
#2853 | Move image dialog to trunk. | Confirmed Review+ | Task | closed | Normal | |
Description |
The image dialog didn't make it to v3 beta, so it needs to be moved to trunk with a review to both its UI and its logic. |
|||||
#2856 | Inches and Centimetres | Confirmed Review+ | Bug | closed | Normal | |
Description |
We still have people that work in Inches and NOT Centimetres. (Do not tell me off... I am trying to change them). In "fckeditor/editor/dialog/fck_paste.html" (CleanWord) you have: Remove margin styles. html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, ) ; html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ; You might want to change to: Remove margin styles. html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, ) ; html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ; html = html.replace( /\s*MARGIN: 0in 0in 0pt\s*;/gi, ) ; html = html.replace( /\s*MARGIN: 0in 0in 0pt\s*"/gi, "\"" ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ; html = html.replace( /\s*TEXT-INDENT: 0in\s*;/gi, ) ; html = html.replace( /\s*TEXT-INDENT: 0in\s*"/gi, "\"" ) ; |
|||||
#2860 | V3: Page Break | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Port the Page Break feature from FCKeditor to V3. |
|||||
#2862 | plugin:maximize porting from v2 | Confirmed Oracle HasPatch Review+ | New Feature | closed | Normal | |
Description |
Related v2 tickets:
|
|||||
#2867 | V3: Force Simple Ampersand | Confirmed Review+ | Bug | closed | Normal | |
Description |
Port the Force Simple Ampersand feature from V2. |
|||||
#2868 | enable 'merge right' and 'merge down' in Firefox | Confirmed | New Feature | closed | Normal | |
Description |
In Gecko one can only merge cells by selecting them all. In other browsers merging can only be achieved by putting the cursor into one cell and do 'merge right' or 'merge down'. It would be better to enable 'merge right' and 'merge down' in Gecko too. In that case 'merge right' and 'merge down' are enabled in all browsers and in Gecko 'merge' is enabled too. |
|||||
#2869 | plugin:blockoutline porting from showblock of v2 | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Related v2 tickets:
|
|||||
#2872 | Server side integration - CKEditor creator | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Port the integration files from V2. |
|||||
#2874 | tables: in FF caption seems to be in the wrong place | Confirmed HasPatch Review+ | Bug | closed | Normal | |
Description |
FCKeditor generates the following <table ....> <thead> <tr> <th scope="col">1</th> <th scope="col">2</th> </tr> </thead> <caption>My Caption</caption> <tbody> <tr> <td>...</td> <td>...</td> </tr> </tbody> </table>
The following would be the correct markup <table ....> <caption>My Caption</caption> <thead> <tr> <th scope="col">1</th> <th scope="col">2</th> </tr> </thead> <tbody> <tr> <td>...</td> <td>...</td> </tr> </tbody> </table> Going further with my tests, I just found that the bug doesn't show up if you use MSIE7. My conclusions:
OR
|
|||||
#2876 | V3: Simplify domWalker | Confirmed Review+ | Bug | closed | Normal | |
Description |
The current domWalker implementation is much more complex than it needs to be. It's using our event system to control its execution even internally, with no benefit from it. It should instead use direct function calls, like onDown, onUp and onSibling. The event system is to be used if we know we may have more than one, or an unknonwn number of listeners to the events. It's there to give flexibility, not just because it's nice to code with it. If instead we know we'll just have a single listener, we can safely do direct function calls. This eliminates the overhead coming from the even system, which definitely impacts on performance. |
|||||
#2879 | plugin:templates porting from v2 | Confirmed | Bug | closed | Normal | |
Description |
Related v2 tickets:
New features in v3:
|
|||||
#2885 | Implement the div container command. | Confirmed Review+ | Task | closed | Normal | |
Description |
Need to implement the div container command and add it to the toolbar. |
|||||
#2905 | plugin:find and replace move to trunk | Confirmed Review+ | Task | closed | Normal | |
Description |
Find and replace plugin is required to move to trunk. |
|||||
#2907 | V3: Make it possible to serialize range bookmark | Confirmed Review? | Bug | closed | Normal | |
Description |
The current bookmark implementation saves references to DOM nodes. We have identified a number of cases where mutations need to be performed to range bookmark nodes, like cloning or innerHTML replacement. In such cases the node references present in the bookmark are not anymore valid, breaking it. Just like we have in V2, we should have an option to save ID references when needed. They perform a bit slower, but give the flexibility we need for it. |
|||||
#2909 | V3: Move Range.CreateBookmark2 from V2 | Confirmed Review+ | Task | closed | Normal | |
Description |
There are a few features depending on the CreateBookmark2 and MoveToBookmark2 present on V2. These functions must be moved to V3. |
|||||
#2917 | Problem with html links on Chrome 2beta | Confirmed | Bug | closed | Normal | |
Description |
Tested on Chrome 2.0.162.0. When an international character is somewhere in the code, FCKeditor returns broken HTML code when switching to the source mode and back (CKEditor simply hangs the browser). To reproduce, paste this code in the source mode: <p>ł</p> <p><a href="http://example.com">http://example.com</a></p> in FCKeditor it is incorrectly transformed into: <p>ł</p> <p><a href="h _fcksavedurl=">http://example.com</a></p> Note that if we use "l" instead of "ł", everything is working fine so it definitely has something to do with non-ascii characters. This bug was originally reported here: http://www.fckeditor.net/forums/viewtopic.php?f=5&t=12946 |
|||||
#2922 | Whole editor broken caused by one malformed plugin | Confirmed Review+ | Bug | closed | Normal | |
Description |
Now plugin manager is going down if any of the plugins on the list has a syntax/runtime error or a plugin is not found at the specified position. It's easy to reproduce. The editor should has some level of fault tolerant with plugins, especially when plugin come from external point. |
|||||
#2932 | AJAX sample fails to populate editing area after subsequent editor instantiations in FF 3 | Confirmed IBM HasPatch Review+ | Bug | closed | Normal | |
Description |
Instances of the editor which have been dynamically created using CKEDITOR.appendTo() fail to properly handle insertHTML(). The first instance of the editor works as expected but when that instance is destroyed and another created in its place, the second instance and all subsequent instances will fail to handle insertHTML().
The behavior can be reproduced by following these steps:
The cause has been tracked down to the mode of the editor not being set before setHTML() is called. A temporary fix for the problem is to update CKEDITOR.editor.prototype.setMode declared in the editingblock plugin and explicitly set the mode (see patch). The erroneous behavior appears to occur only in Firefox 3. |
|||||
#2935 | V3:New Test | Confirmed | Bug | closed | Normal | |
Description |
This is a agile patch for adding new test cases for v3 codes. |
|||||
#2940 | Override CKEDITOR.basePath and CKEDITOR.getUrl | Confirmed IBM Review+ | Bug | closed | Normal | |
Description |
A new feature present in V3 is that it automatically calculates the "base path" (the editor installation path), based on the URL <script> used for the editor script. There are some situations though where it will not be able to find that URL. For example, if merging all scripts used in a page, including the editor scripts, in a single file. To solve this issue, there should be a way to override the default base path calculation with a custom value. The same thing is valid for CKEDITOR.getUrl, which is the function used to locate all editor files. There should be a way to introduce a custom implementation to it. |
|||||
#2944 | Event to indicate that the editor is ready for full interaction | Confirmed Oracle Review+ | Bug | closed | Normal | |
Description |
Currently, we are able to do CKEDITOR.on( 'instanceCreated' ) to get an editor instance for interaction. But, the editor will not be totally rendered at that point, so not all operations would work. There should be a new event indicating that the editor is ready for full interaction. |
|||||
#2945 | Editor instance intialization error | Confirmed Review+ | Bug | closed | Normal | |
Description |
The create editor on the fly APIs assume FORM always existed which is false. Reproducing procedures:
|
|||||
#2947 | Indent does not work in IE | Confirmed IE IBM Review+ | Bug | closed | Normal | |
Description |
The indentation button has no effect in IE. Works well with Firefox, Safari and Opera. |
|||||
#2948 | insertHtml() mangles links | Confirmed IE IBM Review+ | Bug | closed | Normal | |
Description |
Calling insertHTML for a relative URL, like IE only. Ok in FF. |
|||||
#2951 | plugin:template replaceContent default not checked in IE | IE Confirmed Review+ | Bug | closed | Normal | |
Description |
The CKEDITOR.config.templates_replaceContent config option is by default set to true, but failed to represent in checkbox. Reproducing procedure:
|
|||||
#2954 | Option 'Match cyclic' not working | Confirmed IBM Review+ | Bug | closed | Normal | |
Description |
The config option of Match cyclic which should restart the search from the beginning of document which doesn't work.
|
|||||
#2959 | plugin:editingblock reload initial data on empty content | Confirmed Review+ | Bug | closed | Normal | |
Description |
Procedures
|
|||||
#2960 | plugin:pastefromword unable to re-focus preview box | IE Confirmed | Bug | closed | Normal | |
Description |
Procedures
|
|||||
#2962 | plugin:link creation with target:popupwindow doesn't work | Confirmed Review+ | Bug | closed | Normal | |
Description |
Procedures
|
|||||
#2964 | plugin:image dialog loading cause JavaScript Error | Confirmed Review+ | Bug | closed | Normal | |
Description |
Procedures
|
|||||
#2965 | plugin:image preview area failed to update 'align' option | Confirmed Review+ | Bug | closed | Normal | |
Description |
Procedures
|
|||||
#2966 | plugin:image cause JavaScript Error with 'Style' setting. | Confirmed Review+ | Bug | closed | Normal | |
Description |
Procedures
|
|||||
#2970 | Refactor CKEDITOR.dom.documentFragment | Confirmed Review+ | Task | closed | Normal | |
Description |
Current implementation of documentFragment has been ported from V2 for IE 5.5 support, which have dropped for V3. We could now replace those IE hacks with standard support of native documentFragment. Reference |
|||||
#2971 | Introduce the Format combo | Confirmed Review+ | New Feature | closed | Normal | |
Description |
The Format combo is to be developed for V3. |
|||||
#2973 | plugin:template UI display incorrect width | Safari Confirmed Review+ | Bug | closed | Normal | |
Description |
Reproducing procedure:
|
|||||
#2979 | Focus issue after inserting table | IBM Safari Firefox Confirmed | Bug | closed | Normal | |
Description |
When inserting a table at the end of a document it is not possible to navigate past the table to continue entering text.
Steps to reproduce:
Expected behavior:
Actual behavior: |
|||||
#2984 | V3 : Toolbar reorganization | Confirmed Review? | Bug | closed | Normal | |
Description |
The toolbar is quite chaotic right now. It should be reorganized to resemble the V2 buttons order. It has not support for '/' also. |
|||||
#2989 | document::insertHtml failed in IE | Confirmed IE | Bug | closed | Normal | |
Description |
Fuctional Testcasetest-editor-insertHtml.patch |
|||||
#2992 | Toolbars don't wrap in Safari | Confirmed Safari | Bug | closed | Normal | |
Description |
If the editor width is reduced, the toolbar is not wrapping. To test it, open a sample page and resize the window. You should see the toolbars arranging themselves to fit the new width. |
|||||
#2993 | Toolbar wraps incorrectly in IE | Confirmed IE | Bug | closed | Normal | |
Description |
When resizing the browser window, the toolbars wrap incorrectly in IE. |
|||||
#2994 | Format applied to the incorrectly if cursor at the end of a paragraph | Confirmed | Bug | closed | Normal | |
Description |
Steps to Reproduce
The second paragraph gets changed instead of the first one. |
|||||
#2998 | Toolbar combos load the editor.css file with no timestamp | Confirmed Review+ | Bug | closed | Normal | |
Description |
The timestamp querystring is not being appended to the editor.css file request when opening toolbar combos. This can be easily verified by opening the [nightly build demo http://nightly.ckeditor.com/latest/ckeditor/_samples/replacebyclass.html], looking at the "Net" tab of Firebug. |
|||||
#3002 | Use "filters" for the htmlParser API | Confirmed Review+ | Bug | closed | Normal | |
Description |
Currently, we are introducing specific output manipulation directly into the domParser code. This makes that code quite hard to maintain, and less flexible, as it is not able to customize the manipulation with easy. There should be instead a way to attach a "filter" to the parser, including all necessary rules for it. In this the data processor can have a public filter property, which can be easily modified by a plugin or external code. |
|||||
#3003 | Parse HTML data on input | Confirmed | Bug | closed | Normal | |
Description |
The editor is currently taking the input HTML as is, doing lots of string processing (regexes mostly) and them loading it into the editing area. There are occasions when we have buggy HTML being loaded though causing use problem. For example, it's not possible to remove the bold style for the "Test" word in the following case: <strong> <table> <tr> <td>Test</td> </tr> </table> </strong> We should use the HTML parser to "fix" the HTML before loading. The parser should also be used on the paste dialogs, insertHtml (with optional parameter to avoid it), or any function that accepts data from the outside. Also, by using the "parsing filters", proposed with #3002, we could avoid all the regexes and special manipulation we have today, making it also easily customizable by plugins or external code. |
|||||
#3004 | plugin:link created url not right with 'protocol' <other> | Confirmed Review+ | Bug | closed | Normal | |
Description |
The generated link url is not right when setting protocol with <other>. Functional TestcaseTested with test-link-protocol-other.patch. |
|||||
#3006 | V3 : Style system enhancements | Confirmed Review+ | Bug | closed | Normal | |
Description |
There are still lots of features in the V2 Style System that are missing in V3, like the usage of variables in the definition and proper support for attributes and styles checks. I'll be attaching a path with several enhancements and some code organization. |
|||||
#3007 | Font and Size combos | Confirmed Review+ | Bug | closed | Normal | |
Description |
Implement the Font and Size combos. |
|||||
#3008 | plugin:form fields certain attributes not commited in IE | IE Confirmed Review+ | Bug | closed | Normal | |
Description |
Specifically, attributes name,style and check box based options didn't get committed. Functional TestcaseProvide a test case for checkbox, others field types could also be reproduced in same way. |
|||||
#3009 | Enhance testing framework to support async 'setUp' | Confirmed HasTest | Bug | closed | Normal | |
Description |
In functional tests where always requires to have a fully interacted editor instance as prerequisites, with all tests in a case share a 'playground' instance. We should provide a customized TestSuite which responsible for setting up a editor instance transparently with all containing TCs share this singleton, with this, it even able to make sure each test 's cleanness in a TC by resetting the editor with TestCase::setUp. Since the setting up of our editor is always an asynchronous operation, so does cleaning up an editor sometimes, sadly that YUI doesn't support calling wait/resume inside setUp method, we should work around it in order to bring the above functionality into truth. |
|||||
#3010 | Enhance testing framework regards 'selection range' testing | Confirmed HasTest | Task | closed | Normal | |
Description |
<p> This is some <strong>[sample text]</strong>.</p>
<table> <tbody> <tr> <td> Text1 </td> <td> [Text2] </td> </tr> <tr> <td> [Text3] </td> <td> Text4 </td> </tr> </tbody> </table> <br />
|
|||||
#3012 | plugin:format 'h1' font too big to display | Confirmed HasPatch | Bug | closed | Normal | |
Description |
The h1 format selection option text is too big and cropped. |
|||||
#3018 | V3 : Styles Combo | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Implement the Styles combo in V3. |
|||||
#3019 | plugin:form all form-based dialog failed to work in edit mode. | Confirmed Review+ | Bug | closed | Normal | |
Description |
Currently it's unable to update dialog from existed element attributes. |
|||||
#3021 | Toolbar layout is messed up in IE6 quirks mode | Confirmed Oracle IE Review+ | Bug | closed | Normal | |
Description |
To reproduce:
|
|||||
#3025 | V3 : Color Selectors | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Implement the "Text Color" and "Background Color" buttons in the toolbar. |
|||||
#3035 | Javascript error in IE when using fckdialog to insert an image | Confirmed | Bug | closed | Normal | |
Description |
I have tried this several times in IE 6, using various different image settings (thumbnail, frame, border, right, left, etc) to no avail. After I select my image using the fckdialog, I get an error in the following function, on the line indicated by my comments: /** * Ensures that the editing area contains an active selection. This is a * requirement for IE, as it looses the selection when the focus moves to other * frames. */ EnsureSelection : function() { // Move the focus to the Cancel button so even if the dialog contains a // contentEditable element the selection is properly restored in the editor #2496 // EE - Error occurs on the following line $( 'btnCancel' ).focus() ; // EE window.focus() ; FCK.Selection.Restore() ; } Note: I see that the line in question has been added in the latest release, and was not present in release 2.6.3. |
|||||
#3038 | There's no label for the image button and hidden field buttons. | Confirmed Review+ | Bug | closed | Normal | |
Description |
Image button and hidden field labels read "undefined" in JAWS right now. Proper labels should be added for the two buttons. |
|||||
#3040 | Adding YUI.util.Selector module to testing framework | Confirmed Review+ | Bug | closed | Normal | |
Description |
Now UI-level functional is a little bit hard since we have no tool to locate elements. YUI CSS3 Selectors, which could help to locate those elements like buttons. So we'll merge into testselector.jsfile for this functionality. |
|||||
#3041 | plugin:colorbutton incorrect state after color selected. | Confirmed Review+ | Bug | closed | Normal | |
Description |
The bgColor and textColor button should have no states after applying the styles. Currently we can still found sometimes these two buttons toggled on after panel is closed. |
|||||
#3042 | Accessibility not complete on toolbar items | Confirmed Review+ | Bug | closed | Normal | |
Description |
Certain toolbar items are not correctly with title and tabIndex. |
|||||
#3043 | plugin:list unable to cancel when selection inside table cell | Confirmed | Bug | closed | Normal | |
Description |
When reverse apply either numberedlist OR bulletlist inside a td, got a JavaScript error. |
|||||
#3046 | plugin:list adding extra <br> | Confirmed Review+ | Bug | closed | Normal | |
Description |
Both list commands appending extra <br> at end of the target block elements. |
|||||
#3051 | Domiterator incorrect with enforceRealBlock | Confirmed | Bug | closed | Normal | |
Description |
When domiterator establish new block for one of the pseudo blocks, others should be left untouched, which is currently not respected. Procedures
|
|||||
#3057 | V3 : Context Menu | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Implement the context menu. |
|||||
#3058 | IE : Error when closing dialog without setting editor focus | Confirmed IE Review+ | Bug | closed | Normal | |
Description |
An error is thrown. It happens with all dialog. |
|||||
#3070 | plugin:form doesn't work with 'edit' mode | Confirmed Review? | Bug | closed | Normal | |
Description |
The Edit Form function doesn't works, which make certain related feature like Form Properties on Context Menu failed too. |
|||||
#3071 | V3 : Entities | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Introduce the HTML entities support in V3. |
|||||
#3072 | Remove all "pluginPath" arguments from the plugin::init functions | Confirmed Review+ | Task | closed | Normal | |
Description |
In the early beginning we were able to access the plugin path only by a parameter sent to the init function. Now, this parameter is not sent anymore, but the arguments are still there. Some cleanup is need to remove it from the code (it may cause confusion). |
|||||
#3073 | Accessibility: Tab key toolbar navigation stop at Combo | Confirmed Review+ | Bug | closed | Normal | |
Description |
It's now impossible to use Tab navigating through all the toolbar items caused by a stop at the the first combo button. |
|||||
#3075 | plugin:wysiwyg broken on insertHtml | Confirmed Review+ | Bug | closed | Normal | |
Description |
After introducing the HTML Parser Filter system, method like protectHtml should be removed, which in this case cause JavaScript error. |
|||||
#3077 | Tools: createClass incompleteness | Confirmed Review+ | Bug | closed | Normal | |
Description |
CKEDITOR.tools.createClass logic's not right in the following sense:
|
|||||
#3083 | V3 : ENTER Key | Confirmed Review+ | New Feature | closed | Normal | |
Description |
Implement the ENTER key customization in V3. |
|||||
#3085 | Accessibility: Menu | Confirmed Oracle Review+ | Bug | closed | Normal | |
Description |
Menu( Context Menu currently) should has some same navigation mechanism with drop-down control like RichCombo. |
|||||
#3092 | plugin:stylesCombo has no options | Firefox Confirmed IBM Review+ | Bug | closed | Normal | |
Description |
Procedures
|
|||||
#3097 | Insert table within list problem | Confirmed | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#3100 | plugin:wysiwyg should have dtd check on insertElement | Confirmed Review+ | Bug | closed | Normal | |
Description |
CKEDITOR.editor::insertElement is about introducing changes to the document, which need to make sure the schema are satisfied. The functional test reproduce a typical case of this when inserting a table failed within list items. Related tickets |
|||||
#3113 | Need to move input focus to the dialog panels | Confirmed Review? | Bug | closed | Normal | |
Description |
Some of the dialogs panels like 'Add New Image' do not get the input focus, while others like 'Add Anchor' move the focus to the panel. It is especially noticeable in IE, as unlike FF it does not hide the focus marker when a panel is opened. |
|||||
#3117 | Permission denied to set property Window.fakeOpener | Confirmed Review+ | Bug | closed | Normal | |
Description |
If the V3 editor is hosted on third party domain clicking "Spell Check" throws the following error "Permission denied to set property Window.fakeOpener" (FF) or "A Runtime Error has occurfed. Do you wish to debug? Line: 30 Error:Permission Denied" (IE). |
|||||
#3119 | Dynamically Expandable Height | Confirmed | New Feature | closed | Normal | |
Description |
Let me start by saying that I HEART FCKeditor. You guys did an amazing job, and I can't thank you enough. From a design perspective, there is only 1 feature I feel that your system lacks, and that is its ability to adjust the height of the editor to fit to the amount of content inside of it in real time. Something like this for example: http://james.padolsey.com/javascript/jquery-plugin-autoresize/ FCKeditor is so customizable I was able to create the illusion of "edit-in-place" with a CMS I built a couple of years ago. The only indication that the editable content was in a box was the internal scrollbar. :( 'AutoResize' would be a fantastic boolean switch. Hope others agree. Thanks! |
|||||
#3126 | Rename documentFragment.js to lower case | Confirmed Review- | Task | closed | Normal | |
Description |
The documentFragment file has been mistakenly named with camel case, just like the class name. It must instead be renamed to full lowercase. The reference in loader.js is also to be renamed, as well as the test file for it. |
|||||
#3133 | insertElement incorrect after deleteContents | Confirmed | Bug | review_failed | Normal | |
Description |
If there's a insertion happened after the selection range content is deleted, the inserted element is at the end instead of in the front.
|
|||||
#3134 | Invalid alignment of toolbar icons in IE Quirks mode | Oracle Confirmed IE Review+ | Bug | closed | Normal | |
Description |
To reproduce:
|
|||||
#3141 | Block styles incorrect with full selection | Firefox Confirmed | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#3143 | Indent incorrect with second list item | Confirmed | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#3150 | Toolbar items icon has extra border when disabled | Confirmed IE | Bug | closed | Normal | |
Description |
IE6 witness. |
|||||
#3152 | basicstyle override tag not working | Confirmed Review+ | Bug | closed | Normal | |
Description |
Specifically the overrides of both <b> and <i> are not working. |
|||||
#3155 | Htmlentities incorrect with '|' | Confirmed Review+ | Bug | closed | Normal | |
Description |
ASC char '|' is been translated into HTML Numeric Entity, which is wrong. |
|||||
#3157 | Smiley plugin causes browser to hang | Confirmed IBM Review+ | Bug | closed | Normal | |
Description |
Most browsers hang or crash when accessing the smiley feature on a subsequent instance of the editor.
Steps to reproduce:
Result: Most browser will hang or crash at this point. Possibly related to a recursion issue. |
|||||
#3160 | [FF] Ajax sample editor document problem | Confirmed Firefox Review+ | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#3163 | Colour buttons stay hightlighted | Confirmed | Bug | closed | Normal | |
Description |
The background colour button stays highlighted. |
|||||
#3165 | [IE] enterKey incorrect with list item | Confirmed Review+ | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#3166 | enterKey break in source mode | Confirmed Review+ | Bug | closed | Normal | |
Description |
EnterKey logic within document should be disabled for source mode.It's now cause JavaScript error generated when hit the key. |
|||||
#3172 | fake object can't update width | Confirmed Review+ | Bug | closed | Normal | |
Description |
The fake object is unable to get width style which should be updated from the fake control element. |
|||||
#3173 | Make it possible to register event listeners on instance creation | Confirmed Review+ | New Feature | closed | Normal | |
Description |
The following currently doesn't work in all cases: var editor = editor.replace( 'editor1' ); editor.on( 'someEvent', function() { ... } ); ... because the event may be fired during the "replace" call, so the event registration comes too late. There are ways to do so, but it's a little cumbersome: CKEDITOR.on( 'instanceCreated', function( ev ) { ev.editor.on( 'someEvent', function() { ... } ); }); editor.replace( 'editor1' ); There should be instead a way to do that on instance creation, just like this: editor.replace( 'editor1', { // ... some editor settings on : { someEvent : function() { ... }, otherEvent : function() { ... } } }); |
|||||
#3174 | CKEditor 3.0 - Context Menu is not displayed correctly | IE Oracle Confirmed Review+ | Bug | closed | Normal | |
Description |
Screen shot attached |
|||||
#3176 | Match the whole word in Find it does not match | Confirmed IBM | Bug | closed | Normal | |
Description |
Result: A notice pops out - The specified text was not found. |
|||||
#3178 | page break button - confusing name | Confirmed Review+ | Task | closed | Normal | |
Description |
|
|||||
#3182 | IE8: Contents of panels aren't shown | IE8 Confirmed | Bug | closed | Normal | |
Description |
Load the replacebyclass example in IE8, click on any of the dropdowns: they are empty. Also, clicking then in the document doesn't close the panel |
|||||
#3188 | V3 : Implement the <pre> support | Confirmed Review+ | Bug | closed | Normal | |
Description |
In V2, we have special support for <pre> blocks, making it possible to switch them forth and back to <p>, for example. We need it in V3. |