Guest User

Untitled

a guest
Aug 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Ext.Dispatcher.addListener("before-dispatch", function(interaction) {
  2. if(!interaction.controller || !interaction.controller.hasOwnProperty(interaction.action)) {
  3. Ext.dispatch({
  4. controller: "DefaultController",
  5. action: "action",
  6. historyUrl: "DefaultController/action"
  7. });
  8. return false;
  9. }
  10. });
Add Comment
Please, Sign In to add comment