Browse Source

Code change to match Sencha Cmd compiler

pull/367/head
Ramiro Saenz 9 years ago
parent
commit
839d14be4e
  1. 4
      app/ux/Auth0.js

4
app/ux/Auth0.js

@ -140,10 +140,10 @@ Ext.define('Rambox.ux.Auth0', {
localStorage.setItem('id_token', authResult.idToken); localStorage.setItem('id_token', authResult.idToken);
} }
}); });
}).catch(function(error) { })['catch'](function(error) {
Ext.Msg.hide(); Ext.Msg.hide();
Ext.Msg.show({ Ext.Msg.show({
title: 'Firebug Error' title: 'Firebase Error'
,message: error.message+'<br><br>Code: '+error.code+'<br><br>Sorry, try again later.' ,message: error.message+'<br><br>Code: '+error.code+'<br><br>Sorry, try again later.'
,icon: Ext.Msg.ERROR ,icon: Ext.Msg.ERROR
,buttons: Ext.Msg.OK ,buttons: Ext.Msg.OK

Loading…
Cancel
Save