HT202066: Creating ePub files with Pages
Learn about Creating ePub files with Pages
-
All replies
-
Helpful answers
-
Sep 20, 2016 12:15 AM in response to mikedszby Rajesh_Tamilan,The below script will enable the content editable attribute in Mac systems. Tested, working fine.
$(selector).observe('touchstart', function(event) {
var element = event.element();
if (element.disabled)
element.disabled = false;
element.focus();
event.stop();
});
-
Oct 1, 2016 4:45 AM in response to mikedszby gesttev,Was the epub manual created? I dont know if this will be the issue, but what is the doctype?
I might try to test it myself to find out.