Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Do not create an applet element during startup
Browse files Browse the repository at this point in the history
By creating an applet element IE shows a user prompt.
  • Loading branch information
arv committed Dec 16, 2013
1 parent 5df76ef commit 049e302
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/wrappers/override-constructors.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
// for.
var elements = {
'a': 'HTMLAnchorElement',
'applet': 'HTMLAppletElement',

// Do not create an applet element by default since it shows a warning in
// IE.
// https://github.com/Polymer/polymer/issues/217
// 'applet': 'HTMLAppletElement',

'area': 'HTMLAreaElement',
'br': 'HTMLBRElement',
'base': 'HTMLBaseElement',
Expand Down

0 comments on commit 049e302

Please sign in to comment.