Hi.
I'm getting an error when trying to build my html/javascript app:
"Exception is about to be caught by JavaScript library code at line 11889, column 21 in ms-appx://microsoft.winjs.1.0/js/base.js
0x800a138f - Körningsfel i JavaScript: Det går inte att ange egenskapen tooltip för en referens som är odefinierad eller null
The program '[11148] WWAHost.exe' has exited with code -1 (0xffffffff)."
The error is for the winControl tooltip below. I'm also wondering why the attributes title works and not winControl? I get the same error when using WinControl label.
<div id="appbar" data-win-control="WinJS.UI.AppBar">
<button data-win-control="WinJS.UI.AppBarCommand"
data-win-res="{attributes: {'title' : 'clearTooltip'}}"
data-win-options="{id:'clearTileNotification', label:'Clear live tile', icon:'clear'}">
</button>
<button data-win-control="WinJS.UI.AppBarCommand"
data-win-res="{winControl: {tooltip:'clearTooltip'}}"
data-win-options="{id:'clearTileNotification', label:'Clear live tile', icon:'clear'}">
</button>
</div>
btw, I'm using Multilingual App Toolkit in Visual Studio 2012.