HTML symbol

Hi there,

HTML symbols are not showing properly when they come from an observable, while it works fine when being directly in the text control:

<App Theme="Basic">
    <JavaScript>
        var Observable = require("FuseJS/Observable");
        var myValue = Observable("&#216;");

        module.exports = {
            myValue: myValue
       };
    </JavaScript>
    <StackPanel>
        <Text Value="{myValue}" />
        <Text Value="&#216;" />
    </StackPanel>
</App>

Hello!

We do not unescape HTML symbols in JavaScript since we treat the code in it as if it were inside <![CDATA[ tags.

You can still use unicode symbols directly (just write Ø) or escape them with \u.

OK, cool, thanks Olle!