I'm currently busy getting glimpse working for my project. On chrome it works like a charm, but when working with ie11 (desktop mode) I constantly get an JavaScript runtime error: 'Permission denied'.
The error is thrown when loading the trigger.shell.init.
I was able to locate the exact location where it goes wrong and that is in the glimpse.render.js file inside the init function. In that function CSS is added to the head and html to the body. On both methods I get the 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 that point I'm able to access the 'head' using jquery but the moment I'm trying to add something to the head or the body it goes wrong.
Does any one has any idea about what is going wrong? A solution would be ideal.