with last version of webdatarocks and this minimal code:
<html>
<head>
<link href="./webdatarocks/webdatarocks.min.css" rel="stylesheet"/>
<script src="./webdatarocks/webdatarocks.toolbar.min.js"></script>
<script src="./webdatarocks/webdatarocks.js"></script>
</head>
<body>
<div id='output'></div>
<script>
TempDati =
[
{
"Product": "Apple",
"Price": 2.50
},
{
"Product": "Cherry",
"Price": 5.25
}
];
var pivot = new WebDataRocks({
container: "#output",
toolbar: true,
report: {
dataSource: {
data: TempDati
}
}
});
</script>
</body>
</html>
When I load this page in IE11 or when I reload the page with F5 I'm getting this error: SCRIPT5009: 'Promise' non è definito webdatarocks.js (2101,654) After the error, pivot table is drawed and it seams ok and functioning. In IE11 the error is visible only with F12. How can i fix it? did I have forgot some library to include? Thank's for your answer.