I have two widgets, where one sends a message to the other signalling the receiver needs to reload itself. Currently it reloads itself using document.location.reload(false) and it sporadically makes IE 8 javascript crash. It doesn't happen 100% of the time, which makes me think it's some kind of race condition?
IE debugger throws this error:
SCRIPT438: Object doesn't support property or method 'subscribe'
owf-widget-min.js, line 1 character 298251
pointing to this:
this.widgetEventingController.subscribe(this.dragStartName,owfdojo.hitch(this,this.onStartDrag));
Has anybody else seen this?