Dinesh Ramasamy
Dinesh Ramasamy
Add Hello World in Sveltejs https://github.com/Hacktoberfest-2018/Hello-world/pull/986
@mike-north Can you please take a look at this?
Please clone this [forked repo](https://github.com/dineshi2it/react-anything-sortable). Start the app and hit http://0.0.0.0:8722/#/handle Now, in DemoItem.js, removing `inline: true` , which is in line 26 will work fine. But I need to...
So, I removed `mixins: [SortableItemMixin],` and `this.renderWithSortable` from DemoItem.js. It works as expected. Could you please check the same?
@mervick Any work around to get this fixed at my side?
This worked!! [Set Caret at end of text in contenteditable div](https://stackoverflow.com/questions/4233265/contenteditable-set-caret-at-the-end-of-the-text-cross-browser) ``` function placeCaretAtEnd(el) { if (typeof window.getSelection != "undefined" && typeof document.createRange != "undefined") { var range = document.createRange();...
@mervick Is there way to avoid setTimeout by having init callback or something like that?