Results 5 comments of kionez

I think he meant the support within keditor, for example "fa-files-o" (duplicate icon) is no longer present in FontAwesome 5

I'm testing a fix changing src/keditor/container/initContainerContent.js, from: ``` items: `> .${CSS_CLASS.COMPONENT}`, connectWith: `.${CSS_CLASS.CONTAINER_CONTENT_INNER}`, ``` to: ``` items: `> .${CSS_CLASS.COMPONENT}, > .${CSS_CLASS.SUB_CONTAINER}`, connectWith: `.${CSS_CLASS.CONTAINER_CONTENT_INNER}, .${CSS_CLASS.CONTENT_AREA}`, ``` It seems working, but I...

I'm testing a fix to avoid too many nested container, addig in src/keditor/container/initContainerContent.js, in the receive function (line 46): ``` let target = $(this); if (target.parents(`.${CSS_CLASS.CONTAINER_CONTENT_INNER}`).length >= 1) { $(ui.sender).sortable("cancel");...

I've fixed it in javascript langage (because I know better than templating language used), adding a small js to footer.tmpl ``` $(document).ready(function() { $('ul#tabs').find('li').each(function(a,b){ $(b).find('a').each(function(c,d) { var h = $(d).attr('href');...

I added mkdir() code submited by ProlyX's comment on your blog [1] and changed key splitting method with one more clever, now I'm working to find way to add move,...