Edit: this error exist in previous version NppScripting and Dialog.js file too (if someone still uses). Problem is IE browser >9, so if anyone use something newer then should change line ~20:
styles.styleSheet.cssText = this.cfg.css || '\nbody {overflow: auto;}\n';
to
styles.cssText = this.cfg.css || '\nbody {overflow: auto;}\n';
or
styles.textContent = this.cfg.css || '\nbody {overflow: auto;}\n';
Edit: now Emmet use own wraper for dialog, but problem exist for included Zen Coding.
I use portable version (.zip from official NPP page)
Yep, I use original jN installation, but the same problem have in the past when using NppScripting.
I don't use IE so never change its options, only update frome IE9 > IE10 > IE11
Windows7 Ultimate 64-bit Service Pack 1
No, scrollbar is hide and background was apply (style works fine), you can see this dialog in both script engine (after modification, as in my first post) http://postimg.org/image/qq9xypgph/ . Without it I get error because typeof styles.styleSheet is undefined.
See context when using with Emment.: https://github.com/eight04/jn-npp-emmet/issues/1
Edit: this error exist in previous version NppScripting and Dialog.js file too (if someone still uses). Problem is IE browser >9, so if anyone use something newer then should change line ~20:
styles.styleSheet.cssText = this.cfg.css || '\nbody {overflow: auto;}\n';
tostyles.cssText = this.cfg.css || '\nbody {overflow: auto;}\n';
orstyles.textContent = this.cfg.css || '\nbody {overflow: auto;}\n';
Edit: now Emmet use own wraper for dialog, but problem exist for included Zen Coding.