javascript - Runtime error: Permission denied when using glimps on IE11 -
javascript - Runtime error: Permission denied when using glimps on IE11 -
i'm busy getting glimpse working project. on chrome works charm, when working ie11 (desktop mode) javascript runtime error: 'permission denied'.
the error thrown when loading trigger.shell.init.
i able locate exact location goes wrong , in glimpse.render.js file within init function. in function css added head , html body. on both methods permission dinied.
init = function() { pubsub.publish('action.template.processing', { templates: templates }); pubsub.publish('action.shell.loading'); $(getcss()).appendto('head'); $(gethtml()).appendto('body'); pubsub.publish('action.shell.loaded'); pubsub.publish('action.template.processed', { templates: templates }); pubsub.publish('trigger.shell.subscriptions'); process(true, 'action.shell.initial'); pubsub.publish('trigger.shell.ready'); }
at point i'm able access 'head' using jquery moment i'm trying add together head or body goes wrong.
does 1 has thought going wrong? solution ideal.
javascript jquery internet-explorer-11 glimpse
Comments
Post a Comment