Pedro Henriques dos Santos Teixeira

Results 20 comments of Pedro Henriques dos Santos Teixeira

Hi, is this a known limitation, not considered best practice? hmm I guess one can omit the `export namespace` and just declare it?

https://pypi.python.org/pypi/pyquchk seems do it, not sure if helps

creating the symlink worked for me: sudo ln -s /lib/libncurses.so.5 /usr/lib/libncurses.so this is duplicated with the https://github.com/ffi/ffi/issues/168

[handleBeforeunload] argument is missing in the `useEffect`, to fix this

Hi Adam, Have you managed to run it on IE? It seems that some of the attributes are undefined, such as: ed.selection.getSel().anchorNode I had a complex layout, where tinymce was...

I'm trying to run it on IE8. Currently, the offending bit is in the selectOption function: ``` var range = ed.selection.getRng(); range.setStart(range.startContainer, range.startOffset - matchedText.length); ed.selection.setRng(range); ``` would you know...

Hi, it seems that the following code does the job: ``` if($.browser.msie) { range = ed.getDoc().body.createTextRange(); range.moveToElementText(ed.selection.getNode()); range.findText(matchedText, 1, 1 | 2 | 4); range.select(); } else { range =...

Yes, I managed to have it working. Just pushed it to: https://github.com/pedroteixeira/TinyMCE-Autocomplete-Plugin/blob/master/src/autocomplete/editor_plugin_src.js Hope the following snipped of usage helps make sense of it: ``` javascript tinyMCE.init({ mode: 'exact', theme :...

hmm, just remembered: I just implemented a fallback for some browsers, and the autocomplete options are shown at a fixed position beneth the tinymce textarea. That was har far I...