inkblot mods were not properly loaded when wp-admin is under SSL
Adding full stylesheet in editor was preventing WP Editor to work
When using add_editor_style is better to load just a few styles instead of the full style.css as many things can go wrong in the editor (like this case)
I've also removed home_url('/') and replaced it for admin_url() when loading inkblot mods in the editor as it was throwing a mixed content error in JS console when wp-admin is under SSL. This will add the inkblot-mods under SSL if needed.
When using add_editor_style is better to load just a few styles instead of the full style.css as many things can go wrong in the editor (like this case)
I've also removed home_url('/') and replaced it for admin_url() when loading inkblot mods in the editor as it was throwing a mixed content error in JS console when wp-admin is under SSL. This will add the inkblot-mods under SSL if needed.
Thanks