Skip to content

Commit

Permalink
Disable native css properties on Edge (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleeckx committed May 2, 2017
1 parent dec6046 commit cc3ceef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vidyano.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
};
</script>

<script> Polymer = { lazyRegister: "max", useNativeCSSProperties: true, suppressTemplateNotifications: true, suppressBindingNotifications: true }; </script>
<script> Polymer = { lazyRegister: "max", useNativeCSSProperties: !/Edge\/\d./i.test(navigator.userAgent), suppressTemplateNotifications: true, suppressBindingNotifications: true }; </script>
<link rel="import" href="Libs/polymer/polymer.html" />
<link rel="import" href="Libs/layout/layout.html" />
<link rel="import" href="vidyano-lite.html" />
Expand Down

0 comments on commit cc3ceef

Please sign in to comment.