I followed the instruction to create a custom implementation for wrapping my REST calls as in the exemple : http://docs.appery.io/documentation/g...
My code in the custom js file is :
$t.BergerRESTImplementation = $t.createClass(SecurityContext, {
invoke: function(service, settings) {
Code: Select all
//Do any logic before call
//alert('before invoke'); $t.BergerRESTImplementation.$super.invoke.call(this, service, settings);
Code: Select all
//Do any logic after call
//alert('after invoke'); }
});
I get errors in the console :
Is there something i'm missing that is not in the doc?