Custom Query
Results (10501 - 10600 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component | |
---|---|---|---|---|---|---|---|
#13180 | FF: Cursor stops before non content editable element when pressing left arrow key | Bug | Normal | General | |||
Description |
Steps to reproduce:
|
||||||
#13184 | [DnD] Drop on certain UI elements reloads the page | Bug | Normal | CKEditor 4.5.2 | UI : Dialogs | ||
Description |
Dialogs
Expected: No action. Actual: Page reload. The image is displayed by the browser. Notifications
Expected: No action. Actual: Page reload. The image is displayed by the browser. Scrollbars
Expected: No action. Actual: Page reload. The image is displayed by the browser. |
||||||
#13185 | [Toolbar configurator] Wrong position of the suggestion box if there is not enough space below caret. | Bug | Normal | CKEditor 4.5.0 | Toolbar Configurator | ||
Description |
On all browsers. If there is not enough space in the viewport bellow the caret, the suggestion box is shown in the wrong position (should be directly above the caret). |
||||||
#13187 | Paste check doesn't work. | Bug | Normal | CKEditor 4.5.0 | General | ||
Description |
I doesn't paste content. It's a regression, it worked in 4.4.7. |
||||||
#13189 | Prevent converting html entities to tag | Bug | Normal | General | |||
Description |
I use CKEditor in my project, I use html entities in my content like this: Sample Code: <pre> <div> <a href="#">test</a> </div> </pre> but in CKEditor these html entities will convert to tags so this code will show: Sample Code: <pre> </pre> <div><a href="#">test</a></div> |
||||||
#13191 | Button CUT/COPY | Bug | Normal | General | |||
Description |
Impossible use CUT/COPY buttons on panel. User used this buttons on 3.6.6 and after update to 4.4.7 this buttons doesn't work due some security reasonts of browsers. How to resolve it? |
||||||
#13192 | Improve the look and feel of basic sample and toolbar configurator | Task | Normal | CKEditor 4.5.0 Beta | Documentation & Samples | ||
#13193 | Dialog tab is disabled if has content elements of html type only | Bug | Normal | UI : Dialogs | |||
Description |
In plugins/dialog/plugin.js, there's a bug in a show() method, evaluating if the tab shoud be disabled or not. If the element has no input element, iteration never reaches evaluation if the element is required and can pass active content filter check. If no element in the tab has input element, whole tab is disabled (and I'm sure it's unexpected when I have a tab with one html element in it). Code excerpt enableElements = 0; for ( var j in this._.contents[ content.id ] ) { var elem = this._.contents[ content.id ][ j ]; if ( elem.type == 'hbox' || elem.type == 'vbox' || !elem.getInputElement() ) continue; // this code is never reached if ( elem.requiredContent && !this._.editor.activeFilter.check( elem.requiredContent ) ) elem.disable(); else { elem.enable(); enableElements++; } } // and enableElements remains 0, so the tab is disabled if ( !enableElements || ( requiredContent && !this._.editor.activeFilter.check( requiredContent ) ) ) tab[ 0 ].addClass( 'cke_dialog_tab_disabled' ); else tab[ 0 ].removeClass( 'cke_dialog_tab_disabled' ); |
||||||
#13194 | CKEditor adds empty paragraph to the content on startup (inline mode) | Bug | Normal | General | |||
Description |
CKEditor adds an empty paragraph on startup. Steps to reproduce:
Result: a new paragraph has been added to the content Expected: the content to be empty (untouched by CKEditor) This breaks an plugin I created - this basically behaves as an HTML5 placeholder. However, it stopped to work when I upgraded to the last version of CKEditor. See the attached page where you can see the code and the screencast. Hint - I think this is caused by #12630 |
||||||
#13195 | Content display in weired format | Bug | Normal | General | |||
Description |
Add following source in CK Editor: "<p> </p> <div class="box" style="color:#ff0000;"><strong>Translations:</strong> Can you help translate this site into a foreign language ? Please email us with details if you can help.</div>" It display in weired format. See the attached image |
||||||
#13196 | 'too much recursion' while edit table content | Bug | Normal | General | |||
Description |
I randomly get this two errors while i am edit content in a table: too much recursion ckeditor.js:63:195 [Break On This Error]{return new CKEDITOR.dom.element(this.$.body)},getDocumentElement:function() too much recursion ckeditor.js:63:349
When the Error happens the input is very slow, about 2 seconds for one character. First i thought its happend because of the multiple CKEditor instances and / or the amount of text. But it happens alsow with one instance and less text. My Version is 4.4.7 as the online demo. But i cannot reproduce this error on the demo page. Nevertheless i will ask you if you have an idea why this happpens ? Here's an example of the HTML-Code which triggers the Error: <table> <tbody> <tr> <td> <p>TesTest</p> </td> <td> <p>Was / Wann</p> </td> <td> <p>Bemerkung</p> </td> </tr> <tr> <td> <p>Kontrolle</p> </td> <td> <p>TesTest</p> <p>TesTest</p> </td> <td> <p>TesTest <em>Temperaturf</em>dadass</p> <p>(Datum, Visum,fffffasfffffffffffffasf<br /> TesTest6 TesTestauf Abt.)</p> <p>Thermometer Bestell Nr. TesTest</p> </td> </tr> <tr> <td> </td> <td> <p>TesTest TesTestTesTest</p> <p>1x TesTest</p> </td> <td> <p><em>Protokollierung Reinigung</em></p> <p>Monatlich (Datum, Visum)</p> </td> </tr> </tbody> </table>
|
||||||
#13198 | Conflict | Bug | Normal | General | |||
Description |
Hello, I am having troubles using CKEditor. (And I have seen in message boards that many other people are having the same issue).
Is there something we can do to fix that as it sounds like the theme developers are not able to fix it as it CKEditor is not their product. Thank you, Tessa |
||||||
#13200 | [Umbrella] Widget styling - review | Bug | Normal | CKEditor 4.6.0 | General | ||
Description |
This issue covers styling enhancements. It includes: |
||||||
#13201 | Release samples-framework 0.3.0 before releasing CKE 4.5.0 beta | Bug | Normal | CKEditor 4.5.0 Beta | General | ||
#13202 | Release samples-framework 1.0.0 before CKE 4.5.0 final | Task | Normal | CKEditor 4.5.0 | General | ||
Description |
And update package.json. |
||||||
#13203 | Aborting upload doesn't really abort | Bug | Normal | General | |||
Description |
To reproduce this issue, you have to have properly setup CKFinder with CKEditor. Also you should add some
There should be an information visible that uploading was aborted by the user. Unexpected Result: image has been physically uploaded to the server. What I found is that abort in XHR is called synchromously when progress comes from the server. If file is relatively small, then there is no progress called until file is fully loaded. |
||||||
#13207 | Use modal window to display help in toolbar configurator | Task | Normal | CKEditor 4.5.0 | Toolbar Configurator | ||
#13208 | ACF does not get triggered when using DnD to insert text | Bug | Normal | General | |||
Description |
Go to http://sdk.ckeditor.com/samples/acf.html
Go to http://sdk.ckeditor.com/samples/acfcustom.html
|
||||||
#13209 | Spaces are lost when pasting content copied on other website | Bug | Normal | Core : Pasting | |||
Description |
|
||||||
#13210 | The jQuery Adapter is not downloadable | Bug | Normal | General | |||
Description |
This page http://docs.ckeditor.com/#!/guide/dev_jquery tell that jQuery Adapter can be download or put in CKBuilder. Can't find it. |
||||||
#13211 | Drop widget inside itself | Bug | Normal | UI : Widgets | |||
Description |
After dropping widget inside itself it disappears with throwing an error inside the console.Here is a reproduction. |
||||||
#13212 | ckeditor ajax error | Bug | Normal | General | |||
Description |
Hello This is one strange happening i my site which was recently upgraded from drupal 6 to drupal 7. All the migration was 100% successful and we are running the website without any problem. But there is a strange issue when we edit the content. When i edit the content am using Ckeditor and it does functions correctly on the most of the nodes. Then later tracked down to few nodes where the issue was happening. The issue is if there is a "select" followed by "from" anywhere in the body, the ckeditor wont load when editing the node. I have tried most of the options am familiar with
The error am getting in the Chrome console is this Failed to load resource: the server responded with a status of 500 (Internal Server Error)c.extend.ajax @ jquery.js:142 The file http://www.mydomain.com/misc/jquery.js?v=1.4.4 is present and is able to be accessed via browser. Am looking for any help on this matter. |
||||||
#13214 | [Embed] Support for pasting links to resources | New Feature | Normal | CKEditor 4.5.0 | General | ||
Description |
When a link is pasted, we can try to embed it. Of course not all links can be embedded and we cannot be sure if user wishes to embed that link or just leave the link as it is. Therefore, there must be a mechanism to undo our automatic change (e.g. a double undo step). What makes this ticket pretty hard is that embedding is asynchronous. We will need to find a good way to handle this. |
||||||
#13215 | [Embed] Ability to cancel fetching a resource | New Feature | Normal | CKEditor 4.5.0 | General | ||
Description |
User needs to be able to cancel widget embeding, currently it's impossible:
|
||||||
#13217 | Feature Request Shortcut for Bullets | New Feature | Normal | General | |||
Description |
Hi - as a simple feature request could you create a ctrl-shift-L to change to bulleted text like in MS Word? Ctrl-L is LINK so that's reserved, but I think ctrl-shift-L is available Thanks! Great editor! |
||||||
#13218 | "Uncaught TypeError: Cannot read property 'filter' of undefined " and "Uncaught TypeError: Cannot read property 'removeClass' of undefined " after widget drop | Bug | Normal | UI : Widgets | |||
Description |
I have strange behaviour with my custom widget that does not happen on other widgets.I thought it is from my plugin.js but it seems the error comes from the CKEditor's widget api and i wanted to share the errors with you. The attached gif shows in what situation the errors occur. Here is the code that defines the widget editor.widgets.add('widgetCast', { template: '<div class="container-fluid layout-container">\ <div class="row layout-row">\ <div id="layout-column-one" class="col-xs-6 col-sm-6 col-md-6 col-lg-6 layout-column">\ <p>content</p>\ </div>\ <div id="layout-column-two" class="col-xs-6 col-sm-6 col-md-6 col-lg-6 layout-column">\ <p>content</p>\ </div>\ </div>\ </div>', upcast: function(element) { return (element.name == 'div' && element.hasClass('layout-container')); }, editables: { layoutColumn1: { selector: '#layout-column-one', allowedContent: allowedContent }, layoutColumn2: { selector: '#layout-column-two', allowedContent: allowedContent } }, allowedContent: allowedContent }); |
||||||
#13221 | Incorrect ranges when trying to delete a contentEditable element | Bug | Normal | General | |||
Description |
When you set the attribute contentEditable=false in an HTML element within the element and try to remove it with just one keystroke, CKEditor creates a temporary div and moves to it on the first keystroke (ie backspace) and then will delete the element in the second one. That is not the expected behaviour - user should require only one keystroke to delete the element How to reproduce:
|
||||||
#13222 | stack overflow error | Bug | Normal | General | |||
Description |
While opening a document using ckeditor we are getting this error. Issue is not appearing on every deployment but unfortunately at client production environment it is appearing. Following is the error message: Stack overflow at line:3306 Please let us know the possible fix for this problem and please let us know if you can provide the fix on this particular version. Thanks and regards, Niranjan |
||||||
#13223 | Not able to Insert Hidden field | Bug | Normal | General | |||
Description |
When inserting a Hidden Field to the Editor, it throws the javascript error "TypeError: a.setAttribute is not a function". This issue is reproducible in DEMO Page http://ckeditor.com/demo#full also. Also, I have attached the screenshot of the error |
||||||
#13226 | Ckeditor oversize on elements | Bug | Normal | General | |||
Description |
I'm having a problem with the CKEditor. It's making some wierd heights on the different elements, and I can't seem to figure out how. |
||||||
#13227 | Extra characters in image caption | Bug | Normal | General | |||
Description |
Hello, When I use quotes, single or double, in the image caption, I get extra unwanted characters in the caption. Please see screenshot: http://screencast.com/t/R1t38scWZM Even if I remove the characters and try it again, the issue still occurs. Any ideas on a fix? I'm using CKEditor 4.4.5 with Wordpress 4.2 Thanks for your help in advance. Thanks again, Jim |
||||||
#13228 | EasyBlog and CKeditor | Bug | Normal | General | |||
Description |
Hi, I use CKeditor because its best editor i could try for joomla. However, I have one conflict with component EasyBlog, from Stackideas. I use version CKeditor 3.0.4 I contacted them and they told me I should contact You :/ Anyway, Issue that when I add image over their media manager, thumb of picture is inserted but with broken thumb link (it adds domain name twice). When blog is published, lightbox works fine and picture is displayed ok, just this thumb dont work. It works good in firefox but not in chrome. Can You help me? |
||||||
#13229 | No way to scroll the editor's content on mac book | Bug | Normal | Core : Editable | |||
Description |
When I scroll over the editor's content it scrolls the page instead, not the content. The editor should grab all scroll events and should prevent page scroll even if the content is too small and has no scroll bar (or if scroll reached the end of the page). This at least should be configurable. I can't reproduce this on the demo screen, this does work properly in the fullscreen mode. |
||||||
#13230 | IE pasting from word | Bug | Normal | General | |||
Description |
Descriptive summary When copying text from a Word document (with a list) it pastes: <> instead of the real list. Steps to reproduce
Browser and OS Internet Explorer and Windows |
||||||
#13231 | PDF output | Bug | Normal | General | |||
Description |
Hi all - first posting here. We are creating online forms for medical data and we frequently examine the format and layout as a pdf file which works fine. However, the layout of the form seems to dramatically change as soon as data is inputted. Has anyone seen this before? Thanks for all replies. |
||||||
#13232 | AppendText method does not append text in Safari using a Mac | Bug | Normal | CKEditor 4.4.8 | General | ||
Description |
Element.appendText() method does not append text to an <a> element in Safari using a Mac. Environment: Mac OS X 10.9.1 Safari 7.0.1 Steps to reproduce: 1) Create a new CKEDITOR.dom.element with ('a',editor.document) as params. 2) Attempt to appendText to the element. 3) Try to insert the element to the editor. Code snippet: var element = new CKEDITOR.dom.element('a', editor.document); element.appendText('@'); editor.insertElement(element); If you were to put a break point after the append, you would see that the text have not been added to the element. |
||||||
#13233 | HTMLDataProcessor cannot process foo:href attributes | Bug | Normal | CKEditor 4.4.8 | General | ||
Description |
Try loading the following source into editor with ACF disabled: <svg preserveaspectratio="xMinYMin meet" version="1.1" viewbox="0 0 778 873" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <image height="100%" width="100%" xlink:href="map.png"></image> <g class="hover_group" opacity="1"> <a xlink:href="http://www.google.com"> <rect fill="red" height="100" opacity="0.0" width="160" x="110" y="240"></rect> </a> </g> </svg>
The It seems that this regexp is a problem: https://github.com/ckeditor/ckeditor-dev/blob/2fbdbad72248e4b87826319c5e4a5a8e4b86f518/core/htmldataprocessor.js#L771 It allows only hyphens in attributes while colons should be accepted as well: protectAttributeRegex = /([\w-:]+)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+))/gi,
With this regexp the |
||||||
#13234 | IE9 - Picture Outlines are available when the picture is selected even if the picture is not visible | Bug | Normal | General | |||
Description |
Steps to reproduce:
You'll notice that the picture is selected and the outlines are available on the page |
||||||
#13236 | IE11: Input event not triggered | Bug | Normal | General | |||
Description |
To Reproduce:
CKEDITOR.instances.[EDITOR].editable().on('input', function(){console.log('input...')});
Problem: The event is not triggered Note: The event is triggered in FF and Chrome. |
||||||
#13237 | styleSet - removing class attribute when switching style | Bug | Normal | Core : Styles | |||
Description |
I'm having troubles setting up my styleSet. I have (for simplicity) 2 styles: CKEDITOR.stylesSet.add( 'styles-styles-datart', [ { name: 'Paragraph', element: 'p' }, { name: 'Box with border', element: 'div', attributes: { 'class': 'box-with-border' } } ]); When I then use the Styles combo to change a block to a "Box with border", everything is ok, the class name is there. But when I want to change the block back to a normal Paragraph, it leaves the class value without changes: <p class="box-with-border">...</p> I tried various configurations of the Paragraph style, but none worked (well one worked, but it is quite ugly):
Is there some other, cleaner way to do this? |
||||||
#13238 | Links do not work in CKEditor | Bug | Normal | General | |||
Description |
I have been able to replicate the following steps in Chrome (42.0), Firefox (37.0.2), and IE 11, with our 4.4.4 build and the demo on this website.
The text appears to contain the link (blue color and underlining), however, you cannot mouseover the link nor click on the link in the editor. If you copy the RAW HTML and paste in the browser (outside the editor), you can mouseover the text and click on the link as expected. Again, I was able to replicate the behavior using the CKEditor demo on this website so I don't think it's limited to just v4.4.4. |
||||||
#13239 | Source view has no word-wrapping in Firefox now | Bug | Normal | UI : Source View | |||
Description |
The source view has no word-wrapping in Firefox, as of very recently. Because Firefox just fixed a long-standing CSS implementation bug: https://bugzilla.mozilla.org/show_bug.cgi?id=82711 Other browsers still have the bug. Your CSS has white-space:nowrap cascading through. You therefore need to probably put an override on the textarea element. Problem is reproducable on your latest demo. |
||||||
#13241 | Uncaught IndexSizeError: Failed to execute 'extend' on 'Selection': 1 is larger than the given node's length | Bug | Normal | General | |||
Description |
After setting blurDelay = 0, then click Bold and click Paste in toolbar, it will throw the error below. Uncaught IndexSizeError: Failed to execute 'extend' on 'Selection': 1 is larger than the given node's length. CK version:"4.4.6", revision:"08188c4" Only in Chrome, IE and FF will be fine jsfiddle: http://jsfiddle.net/mfine2/98rwv6Lt/ |
||||||
#13242 | Helper line disappears when dragging image without caption (with enhanced image) | Bug | Normal | General | |||
Description |
When you try to reposition an image with the enhanced image plugin without a caption you get no indication of where in the webpage the image will be dropped if you let go of your mouse. If you do this with an image with a caption the helper line tells your where your image will be moved if you let go of the mousebutton. Steps to reproduce:
Browser/OS: Firefox 37.0.2 and Chrome 42.0.2311.135 on OSX 10.10.3. |
||||||
#13243 | CKE 4.x - WSC button disabled under IE9 Quirks Mode | Bug | Normal | General | |||
Description |
The WSC button appears to be disabled (greyed-out) when ran under Quirks Mode in IE9. No javascript errors in console. |
||||||
#13244 | CKE 4.x - WSC button disabled under IE9 Quirks Mode | Bug | Normal | General | |||
Description |
In the full featured demo, the WSC button appears to be disabled (greyed-out) when ran under Quirks Mode in IE9. No javascript errors in console. |
||||||
#13245 | CKE 4.x - WSC button disabled under IE9 Quirks Mode | Bug | Normal | General | |||
Description |
In the full featured demo, the WSC button appears to be disabled (greyed-out) when ran under Quirks Mode in IE9. No javascript errors in console. |
||||||
#13246 | Clean up licenses | Bug | Normal | CKEditor 4.5.0 | General | ||
Description |
Clean up all licenses according to https://gist.github.com/Reinmar/c23f70232ce84cb8011f |
||||||
#13247 | CKEditor.com Mollom bug | Bug | Normal | General | |||
Description |
I've tried submitting a new plugin several times and I've repeatedly been blocked from the Mollom anti-spam / captcha service CKEditor.com uses. I don't understand why because there's no explination provided save for the following: Your submission has triggered the spam filter and will not be accepted. If you feel this is in error, please report that you are blocked. I've repeatedly gone to their website and reported that I was blocked, but was not spamming. They in turn have unblocked me several times as well, but when I go to resubmit my plugin to the repository it just re-blocks me. |
||||||
#13248 | not found (error to origin) in Image Upload tool | Bug | Normal | General | |||
Description |
I am using CkEditor4.4.3. In OS X in Chrome browser in image upload tool, On "Send it to the Server" button getting error "not found (error to origin)" What could be the possible cause? |
||||||
#13249 | Using CKEditor with ajax and submit a file from form | Bug | Normal | General | |||
Description |
Hi, I have a form which include a text field, a file (picture) field, a textarea (CKEditor). I can use image upload addons. Because When I post image process some procedures. And I cant track which image uploade. I'm using an jquery code on below but I cant take updated textarea (FCKedit) value. var fields = new FormData(document.getElementById("veriGiris")); $.ajax({
data = CKEDITOR.instances.detay_tr.getData(); but I cant merge with my Jquery code above. Can you say me a solution. PS. Sory for my broken English. |
||||||
#13251 | Method isRangeBefore fails when first range container is text node and the second one is element. | Bug | Normal | General | |||
Description |
Relative test available in branch:t/TMP. |
||||||
#13252 | Update a11y help info about navigation in dialogs | Bug | Normal | CKEditor 4.4.8 | General | ||
Description | |||||||
#13253 | CKEditor with DOKSoft Quick Image Upload | Task | Normal | Server : PHP | |||
Description |
Hi everyone, I bought this plugin (DOKSoft Quick Image Upload), but I want to edit them. The handler is good for me, but script for uploading I need edit. The best solution for me will be build new Upload Script. Is there someone, who know this plugin? I don't know what I must return after image upload for preview in CKEditor. Sorry for my English, I'm from Czech :) Thx very much! |
||||||
#13254 | Cannot outdent block after indent when using divarea plugin | Bug | Normal | CKEditor 4.4.8 | General | ||
Description |
I'm using the When I indent a block (not a list) in the editor, the outdent button remains disabled and I'm not able to outdent it again. I can continue to indent to additional levels, but can never outdent. Here's the simplified HTML to reproduce the problem. <html> <head> <script src="ckeditor/ckeditor.js"></script> </head> <body> <div> <ul> <li> This is just a list item. But CKEditor is below.<br> <textarea id="something">some text</textarea> <script> CKEDITOR.replace("something"); </script> </li> </ul> </div> </body> </html>
It turns out the state of the outdent button/command is being set to The root of the problem is on lines 58-60 of plugins/indentblock/plugin.js: if ( !firstBlock.is( $listItem ) ) { firstBlock = firstBlock.getAscendant( $listItem ) || firstBlock; }
This use of I've been able to fix (or at least work around the issue) by changing replacing lines 58-60 with: if ( !firstBlock.is( $listItem ) ) { var query = function ( element ) { return element.nodeName in $listItem && path.contains( element ); }; firstBlock = firstBlock.getAscendant( query ) || firstBlock; } Probably not applicable to this issue, but I'm using:
Attached is my build-config.js file. |
||||||
#13256 | stack overflow error | Bug | Normal | General | |||
Description |
While opening a document using ckeditor we are getting this error. We have not made any changes in the original code. Issue is not appearing on every deployment but unfortunately at client production environment it is appearing. Following is the error message: Stack overflow at line: Please let us know the possible fix for this problem and please let us know if you can provide the fix on this particular version. One hint is if we remove the formatting like bullet point then issue does not appear. Kindly help us out. Thanks and regards, Pramod |
||||||
#13259 | Feature request: When toggling to source mode, place cursor at same place as in WYSIWYG mode | New Feature | Normal | General | |||
Description |
Hi, I would very much like to see this feature in ckeditor, especially for working on long texts. It can sometimes take a long time to find the correct position to continue editing when toggling to source mode. Automatically placing the cursor at the current position from WYSIWYG mode and scrolling to that position would be extremely helpful. And one other thing I'd like to tell you: Your bug reporting tool is very difficult to access and use, I'll give some of the reasons below.
CKEditor is a great tool, though, which I like to use - and I thank you for all your work on it! |
||||||
#13264 | Data type of the event paste is different among different browsers | Bug | Normal | General | |||
Description |
Catching the event "paste" with the method CKEDITOR.event.on, it doesn't matter what kind of text or html code i'm gonna paste in the editor, in firefox and IE8 i get as data type (evt.data.type) "html", on the contrary, in chrome and Opera i get the type "text". Please let me know if this is a bug or not. Regards, Giorgio |
||||||
#13265 | Allow to run tests over secure connection (HTTPS) | New Feature | Normal | CKEditor 4.5.3 | General | ||
Description |
We have to wait for closing https://github.com/benderjs/benderjs/issues/208. To finish this task we need to add certificate files and define options in config. |
||||||
#13266 | 18 shades of gray | Task | Normal | CKEditor 4.4.8 | General | ||
Description |
Ticket for the PR: https://github.com/ckeditor/ckeditor-dev/pull/160 |
||||||
#13268 | Documentation for CKEDITOR.dom.text is incorrect | Bug | Normal | CKEditor 4.4.8 | Documentation & Samples | ||
Description |
* var nativeNode = document.createTextNode( 'Example' ); * var text = CKEDITOR.dom.text( nativeNode ); * * var text = CKEDITOR.dom.text( 'Example' ); should be * var nativeNode = document.createTextNode( 'Example' ); * var text = new CKEDITOR.dom.text( nativeNode ); * * var text = new CKEDITOR.dom.text( 'Example' ); Or you will get an error when replacing an element with that text. |
||||||
#13269 | Table "outline" and drag handles are at the wrong position if the table has a headline | Bug | Normal | General | |||
Description |
In Firefox 37, the drag handles for tables are at the wrong position when the table has a headline. When resizing the table, the outline is also shown at the wrong position. It seems the table headline is not accounted for when determining the top position. To reproduce the issue, simply visit the demo page (http://ckeditor.com/demo) and click into the table titled "Mission crew". |
||||||
#13270 | When copy images between editor their src may nee to be corrected (different domains or base paths) | Bug | Normal | General | |||
Description |
See #5218, #641and dozen other tickets. They were a reason to introduce However, it has a side effect. When copying image from editor1 to editor2 and:
then after copy and paste such image will have a URL relative to editor1 while it operates under different path (that of editor2). Hence - it won't display.
Funny thing is that browsers copy a full path with the domain to the clipboard, so if we let browser do the job, everything would work. However, exactly this feature of the browsers was a reason to introduce |
||||||
#13271 | Issue with Select an Element in Safari Browser | Bug | Normal | Core : Selection | |||
Description |
Suppose we have following Code : editor.getSelection().selectElement(element); When you want to select and element by using this method (which in our case is current line in editor) , it works fine in all browsers except any version of Safari. Actually it looks like selecting two element/line instead of requested element. |
||||||
#13272 | [CKEDITOR.config.scayt_minWordLength] does not work | Bug | Normal | UI : Spell Checker | |||
Description |
after enable SCAYT plugin => set [CKEDITOR.config.scayt_minWordLength = 2] => not working => search source code of 4.4.7 in CDN => no [scayt_minWordLength] was found => http://cdn.ckeditor.com/4.4.7/standard/ckeditor.js |
||||||
#13273 | Inline Save BUG (with FIX ) | Bug | Normal | General | |||
Description |
Steps to reproduce: When customize plugin with builder, add "inline save", the "ckeditor.js" does not include one parameter (editorID) in the POST. CODE WITH BUG: CKEDITOR.plugins.add("inlinesave",{init:function(a){a.addCommand("inlinesave",{exec:function(a){(function(){var b=a.getData();jQuery.ajax({type:"POST",url:dump_file,data:{editabledata:b}}).done(function(a,b,c){alert("Your content was successfully saved. +c.responseText+?")}).fail(function(a){alert("Error saving content. +a.responseText+?")})})()}});a.ui.addButton("Inlinesave",{label:"Save",command:"inlinesave",icon:this.path+"images/inlinesave.png"})}}); CODE BUG FIXED (adding "c" var), with this code: CKEDITOR.plugins.add("inlinesave",{init:function(a){a.addCommand("inlinesave",{exec:function(a){(function(){var b=a.getData();var c=a.container.getId();jQuery.ajax({type:"POST",url:dump_file,data:{editabledata:b, editorID:c }}).done(function(a,b,c){alert("Your content was successfully saved. +c.responseText+?")}).fail(function(a){alert("Error saving content. +a.responseText+?")})})()}});a.ui.addButton("Inlinesave",{label:"Save",command:"inlinesave",icon:this.path+"images/inlinesave.png"})}}); |
||||||
#13274 | CUSTOMIZE: widgetbootstrap | Bug | Normal | General | |||
Description |
When customize plugin with builder, add "widgetbootstrap", under the plugin folder, in the "widgetbootstrap" folder are not added the "icons" folder with the icons: widgetbootstrapAccordion.png widgetbootstrapAlert.png widgetbootstrapLeftCol.png widgetbootstrapRightCol.png widgetbootstrapThreeCol.png widgetbootstrapTwoCol.png |
||||||
#13277 | Copy table with "Repeat as header row at the top of each page" option enabled in Word didn't paste correctly in CKEditor | Bug | Normal | Core : Tables | |||
Description |
Copy table with "Repeat as header row at the top of each page" option enabled in Word didn't paste correctly in CKEditor. Tested on CKEditor dashboard page http://ckeditor.swg.usma.ibm.com/ Steps to reproduce:
All cells in the pasted table in CKEditor are header cells, see Pasted_table.png. And the table properties "Headers" field is set to "Both" and I'm not able to change it. Change didn't take affect after OK. The expected result is only the first row as header and rest are standard cells. |
||||||
#13279 | Review CSS vendor prefixes | Task | Normal | CKEditor 4.5.0 | UI : Skins | ||
Description |
As time passes by browsers require drop certain vendor prefixes. The whole code base (skins and inline styles in JS) need review and updates. |
||||||
#13281 | plugins missing from "ckeditor_4.4.7_full.zip" download? | Bug | Normal | General | |||
Description |
After downloading the "ckeditor_4.4.7_full.zip" file from "ckeditor.com >> 'Download" >> Full Package", I started to think it might be missing a few packages. I posted here initially: http://ckeditor.com/addon/autogrow Robert mentioned for "autogrow", it isn't part of any of the packages (basic/standard/full), so that's normal/to-be-expected for it. Ok, fair enough. But the next question I wanted to ask was how about the "keystrokes" plugin? This is also missing from the "*_full.zip" file. (I wanted to ask this on the previously mentioned page, but the spam filter kept blocking me for some reason, so I came here instead). I saw a reference on how to do custom-keyboard shortcuts here: http://ckeditor.com/forums/Support/Custom-hotkeys Which pointed to here: http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.keystrokes In there, it mentions that you can edit the default values of CKEDITOR.config.keystrokes, which are defined in "plugins/keystrokes/plugin.js". Funnily enough, when I check for this file, it's missing from the "ckeditor_4.7.7_full.zip" download too. Unfortunately, this doesn't seem to be available as a separate download (ie, no google hits when I search for "ckeditor keystrokes plugin", I even tried visiting "http://ckeditor.com/addon/keystrokes", but no luck there either). I noticed the source for it was available here though: http://docs.cksource.com/ckeditor_api/symbols/src/plugins_keystrokes_plugin.js.html I also noticed in an old copy of ckeditor that I kept that it just consisted of this one "plugsin/keystrokes/plugin.js" file, so I thought I'd just try copy/paste it (with the html-stuff removed). I also had to delete some of the example sections of the comments because they contained /* ... */ c-comments, which were interfering with the / ... */ documentation comment that contained them. I then edited the "config.js" file and added this plugin to the list:
Finally after doing all this, I got the keystrokes plug-in working with the advice from here. |
||||||
#13282 | Copy/paste in CKeditor adds junk styles (e.g. width) which breaks responsive design | Bug | Normal | Core : Pasting | |||
Description |
Hi, Let's say in ckeditor/contents.css are defined following styles: body {
} .responsive-block {
} Then if in ckeditor you copy (of course in visual mode, not from source code): <div class="responsive-block">...</div> and you paste it to some other place you will get: <div class="responsive-block" style="width:500px">...</div> This breaks responsive design. Provided example deals with width but junk styles are also added for font-size, line-height, ... which also could be changed by responsive styles. I understand that in some circumstances this behaviour is desired but on other side there are circumstance when this behaviour breaks responsive design. So if this is not considered as bug it would be great at least have possibility to "paste without addition of explicit inline styles" or "paste unchanged" and let the user decide what he will do. Thank you. Mojmir Durik |
||||||
#13284 | Cannot drag'n'drop widget if a text caret is placed just after widget instance | Bug | Normal | CKEditor 4.5.4 | Core : Selection | ||
Description |
User is unable to drag and drop widget instance using its handler if a text caret is placed just after the widget (example: some text [Inlinewidget]| rest of the text). On mouse down click there is an exception: Uncaught IndexSizeError: Failed to execute 'extend' on 'Selection': 1 is larger than the given node's length. Bug was reported only for Chrome browsers (all the latest versions). Steps to reproduce:
I've found that the bug is connected with "bookmarks". The "source" of the problem is editor.on( 'beforeUndoImage', beforeData ); editor.on( 'afterUndoImage', afterData ); editor.on( 'beforeGetData', beforeData, null, null, 0 ); editor.on( 'getData', afterData ); (... and in afterData function ...) if ( fillingChar ) { fillingChar.setText( fillingCharBefore ); if ( selectionBookmark ) { moveNativeSelectionToBookmark( editor.document.$, selectionBookmark ); selectionBookmark = null; } } By unknown reason (for me), selectionBookmark is an empty textnode with offset property set to 1. This causes an exception in sel.extend( bm[ 1 ].node, bm[ 1 ].offset ); which cannot move selection to position 1 when the node length is 0. |
||||||
#13285 | Focus makes editor scroll to top on Firefox 38 | Bug | Normal | Core : Editable | |||
Description |
Whenever editable.js' focus() is called, editor scrolls to top on Firefox 38. This does not happen on Chrome or IE. What is strange is that I can't reproduce this on the demo. The line that causes this is line 77: this.$[ CKEDITOR.env.ie && this.getDocument().equals( CKEDITOR.document ) ? 'setActive' : 'focus' ](); |
||||||
#13286 | <em> Tag Added Automatically | Bug | Normal | General | |||
Description |
Hello Support, We have a urgent issue, We are using CKEditor in DNN site, The issue is that each time we view Source it will add add Empty <em> Tag in each and every paragraph. It will add in all paragraph from where added in Last time. |
||||||
#13289 | "Image source URL is Missing" error when adding a link from 'Link' tab | Bug | Normal | File Browser | |||
Description |
Open any demo CKEditor from http://ckeditor.com/demo Click 'Image' button from toolbar Select 'Link' tab Click 'Browse' button and select an image from CKFinder Click 'ok' green button to insert image link into CKEditor (i guess)... Result: "Image source URL is Missing" error |
||||||
#13290 | [Chrome] Format not applied if format selected then quickly select the text area. | Bug | Normal | General | |||
Description |
In Chrome, if a format is selected then a user quickly starts typing after clicking the text area, the format selected is removed. A video is attached. Steps to Reproduce
Expected Results Any selected format is applied Actual Results The selected format is removed |
||||||
#13292 | Protection pattern does not work in attribute in self-closing elements with no space before /> | Bug | Normal | CKEditor 4.4.8 | General | ||
Description |
Based on: https://github.com/ckeditor/ckeditor-dev/pull/185 Test: <img src="[[image]]" /> <img src="[[image]]"/> With the following setting: { protectedSource: [ /\[\[[^\]]+\]\]/g ] } |
||||||
#13293 | separators not visible when uicolor white | Bug | Normal | General | |||
Description |
uiColor : '#FFFFFF' .cke_1 .cke_toolbar_separator {
} |
||||||
#13300 | The internalCommit argument in the image dialog seems to be totally unused | Bug | Normal | CKEditor 4.5.0 | General | ||
Description |
The argument was added in #4246, because there's nothing about it in: http://dev.ckeditor.com/browser/CKEditor/trunk/_source/plugins/image/dialogs/image.js?rev=4684 and plenty of it here: http://dev.ckeditor.com/browser/CKEditor/trunk/_source/plugins/image/dialogs/image.js?rev=4686
For all these years I thought that it serves some purpose, but I cannot find any. In our tests and the one I performed manually There's still a small chance that someone (perhaps some external plugin, because none of ours seem to rely on this argument either) uses this argument, so I propose to make this change in 4.5.0. |
||||||
#13302 | inline editing | Bug | Normal | General | |||
Description |
Hello all, I'm new to CKEditor and this site (just registered so hello). I wonder if you may have an answer? I'm trying to use the inlineall.html example given in the downloaded sample and am running into major difficulties. I can generate the editable/none editable regions (worked that out with the disable feature) but now want to save what I've edited via Php. My aim is to use this for a news page and do the following: 1) Take the example regions in the inlineall.html example and save each to a database (this would be the news_article_body - see below) 2) Once written, I then want to recall the data (all the regions) and display them in their original format and positions. 3) I aim to use a single field in a table to hold the data, which may look something like this
I am pretty OK with Php, the actual DB manipulation is not a problems (the physical writting and reading); I just can't figure out how to get the edited fields from the inlineall.html page to the php I've noticed that the replacebyclass.html example does this quite well P.S. I've already saved the inlineall.html to a Php file and am good to go :) Any help would be greatly appreciated. Much thanks in advance |
||||||
#13304 | Support for passing DOM elements to config.sharedSpaces | New Feature | Normal | CKEditor 4.5.0 | General | ||
Description | |||||||
#13305 | [FF] Error thrown in various widget tests involving DnD | Bug | Normal | CKEditor 4.5.0 | General | ||
Description |
TypeError: editor.toolbox is undefined It's thrown because the toolbar plugin isn't enabled. |
||||||
#13306 | link element in body breaks content | Bug | Normal | General | |||
Description |
Go to http://ckeditor.com/demo#full-page as it seems to be the only demo with ACF settings to support
Switch to source mode and in the body (yes, it's not allowed bla bla bla. I'm talking about real users, not experts that read the HTML specifications) insert Now go back to design mode and switch to source and you'll find that the body is empty and everything is after it. |
||||||
#13307 | Uncaught IndexSizeError: Failed to execute 'extend' on 'Selection': 1... in Blink-browsers | Bug | Normal | General | |||
Description |
Seemingly at random, I get this exception when calling editor.getData() in my application. The error message is identical to #12727, but I believe it is a different bug since I use neither Div Editing Area or Content Template plugin. I haven't been able to reproduce the bug myself, but I'm using a bugtracking tool with a console recorder in the public version of my application that tells me that the error occurs quite frequently. It seems to be a Blink-only problem and has been around since 4.4.6 at least. Screenshot and build-config attached. I'll try switching to an uncompressed version of CKEditor to see if I can get some more info from the console recorder. |
||||||
#13308 | [HC] Enable color buttons in High Contrast | New Feature | Normal | Accessibility | |||
Description |
Currently, we're not presenting the color buttons in High Contrast mode. They have been disabled with #3706. The main reason for it is this comment:
We may investigate if there is any possibility to solve this problem though and enable HC users to use the color features. |
||||||
#13309 | Paste as Text/Paste from Word | Bug | Normal | General | |||
Description |
Hello, when I right cklick and choose "Paste": the Text is with colours und format. when I right click and choose "Paste as Text": the Text is also with colour and format. when i choose one more time "Paste as Text", then ist the Text onlx Text without colour. How can i fix it? Thanks |
||||||
#13310 | full package not displaying all plugins in toolbar | Bug | Normal | General | |||
Description |
Hi, I have been working with this issue for a while and i have downloaded the full package from CKEDITOR and I have been doing everything to at least display the Font and Size drop downlist to appears. I first download the standard version and placing the font folder in the ckeditor/plugins folder and then in ckeditor/config.js adding config.extraPlugins = 'font'; This did not work, so i downloaded the fullpackage with all the plugins and still the toolbar shows as i have the standard version. This is my config.js /
CKEDITOR.editorConfig = function( config ) {
}; What can i do to at least either have the Font and Size dropdownlists or have the toolbar contain all features. Thank you, Cory |
||||||
#13311 | Image upload notification getting obscured. | Bug | Normal | UI : Dialogs | |||
Description |
Using CKEditor ver. 4.46... One of my users reported an issue with a notification message being obscured in the image upload tab of the standard image dialog. Please see the following support forum thread for details, especially the PDF attachment. Thanks! Steve |
||||||
#13312 | Recurring problem with symbols being replaced with “?” | Bug | Normal | Core : Output Data | |||
Description |
We have a recurring problem with symbols being replaced with “?”. Symbols used like © ψ ρ σ etc., ISSUE: when users use some special symbols like mentioned above and post data, ckeditor replacing them to '?' while saving to DB. Editor is integrated into Php v5.5 with back end MySql 5.1 Please let us know if you need any more info. You will be highly obliged if any help is provided to resolve ASAP. Thanks |
||||||
#13313 | When I paste text from PDF document, only partial text appears in the editor | Bug | Normal | General | |||
Description |
Hi Team, I had a PDF file which contains a table. When I paste the content directly into the CKEditor it only gets the text till the table. Rest of the text below table is not displayed. Also entering the text after the table becomes difficult. |
||||||
#13315 | CKEditor object in debug mode doesn't load correctly. | Bug | Normal | General | |||
Description |
Using the CKEditor in debug mode ( ?x-ckeditor-debug=true ) , when the CKEditor loads, i'm getting errors in the console, regarding some methods missing(e.g. the CKEDITOR.on method). I used to this simple html page to load the editor : <!DOCTYPE html> <html> <head>
</head> <body>
</body> </html> |
||||||
#13316 | CKEDITOR.env.isCompatible should be a blacklist rather than a whiletlist | Task | Normal | CKEditor 4.5.0 | General | ||
Description |
The reason is pretty simple – we know on what browsers CKEditor does not work (IE7-), but we do not know on what browsers it works and will work in the future. So given the problems with browsers recognition it will be much safer to have a blacklist. |
||||||
#13317 | [Chrome] Native cut/copy/paste started working when triggered by a trusted event | Task | Normal | CKEditor 4.5.0 | General | ||
Description |
I'm not 100% sure yet, but it seems that the copy and cut buttons work. AFAICS paste doesn't but it's because we don't execute the native command (because it never worked) on other browsers than IE. Following things need to be checked:
|
||||||
#13318 | Inserted a question mark | Bug | Normal | General | |||
Description |
If to insert the image, the question mark is inserted. Similar occurs if to press Shift+Enter. Problem only in the Safari browser version: 4.3.1 revision: 3ecd0b8 http://gd.lotos-cms.ru/files/qqq1.PNG http://gd.lotos-cms.ru/files/qqq2.PNG http://gd.lotos-cms.ru/files/qqq3.PNG |
||||||
#13319 | htmlEncodeOutput option not work for ajax submit if jquery adapter used | Bug | Normal | General | |||
Description |
Because jquery adapter will override the val function, the value post to server always not encoded. I tried to set CKEDITOR.config.jqueryOverrideVal = false, but the val function still get override, I can confirm CKEDITOR.config.jqueryOverrideVal is false and attr("value") is encoded from firefox debug console, but the val function still return no encoded. |
||||||
#13320 | All input element on plugin dialog can't get focus if there a tabindex = -1 element in html | Bug | Normal | General | |||
Description |
as Title, if there a element like <div tab-index="-1"></div> in html (in my case is bootstrap modal), all input dialog on plugin element can't get focus. |
||||||
#13321 | The "Enter" key acts like a Tab key | Bug | Normal | General | |||
Description |
Highlight the default paragraph and click the backspace button Type the first line and press the Enter key. *Instead of returning the cursor to the the next line, the editor moves the cursor over several spaces to the right, like a tab key. |
||||||
#13324 | insert link with css class using insertHtml | Bug | Normal | General | |||
Description |
Having a css file loaded, inserting a link with a class specified in this css file using insertHtml fails with an error:
This can be reproduced on the demo page, currently containing version 4.4.7: http://ckeditor.com/demo In Windows 8.1, Internet Explorer 11, using the console run the following line-by-line: CKEDITOR.instances.editor1.setData(''); CKEDITOR.instances.editor1.addContentsCss('http://foundation.zurb.com/docs/assets/css/docs.css'); CKEDITOR.instances.editor1.setMode('source'); CKEDITOR.instances.editor1.setMode('wysiwyg'); CKEDITOR.instances.editor1.insertHtml('<a href="http://www.ckeditor.com" class="button">CKEditor</a>','unfiltered_html') |
||||||
#13326 | Dynamically adding context menu items ignores new command object | Bug | Normal | General | |||
Description |
I am trying to add multiple items to a context menu based on what the user has selected elsewhere on the page. I can get the menu items to add, but it seems that the command names are being ignored and overwritten. Details and code on Stack overflow: http://stackoverflow.com/questions/30377897/ Did I just make a JavaScript coding error? Or is this a CKEditor bug? I have not been able to find any articles related to adding menu items in this way. Thank you, Justin |
||||||
#13327 | Migrating Content into CK Editor with Script | New Feature | Normal | General | |||
Description |
HI there, I am currently working with 'Intranet Connections' to migrate information from our old intranet to new. The intranet connections platform is using you CK editor plug-in a content editor. What I need to is migrate over 20000pages into this new environmnent. Unfortunately there is no tool within the platform that manually migrate the HTML from old environment into pages (Content pages with CK editors) on the new platform. Could you possibly suggest any solution?? Would be a life saver with any information. Thank you! |