I have this for my updateView method:
updateView: function() {
var url = new URL();
url.location = "http://www.example.com/test.html";
var response = url.fetch();
this.controls.AboutCSTx.setText(response);
}
I get the following error: TypeError: url.fetch is not a function.
I'm using Framework/kontx/1.3/src/all.js

