Hello,
I am setting up to use Polymer and i am getting the following error:
Uncaught ReferenceError: WebComponents is not defined -- polymer.concat.js: 10443
All i am doing is following a tutorial to include the icon. Here is my code:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>KeShop</title>
<script src=<?php echo BaseUrl.'external/polymer/components/platform/platform.js';?>></script>
<link rel="import" href=<?php echo BaseUrl.'external/polymer/components/core-icons/core-icons.html'?>>
</head>
<body unresolved>
<core-icon icon="android"></core-icon>
</body>
</html>
I can see all other polymer files loading in my developer tools, but not sure why i am getting the error
Thanks.