Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. (function(app) {
  2. app.AppModule = function (Vue, options) {
  3. Object.defineProperties(Vue.prototype, {
  4.  
  5. $licketRemote: {
  6. get: function () {
  7. return {
  8. handleActionLinkClick: function($linkCompositeId, $callback) {
  9. $callback();
  10. },
  11.  
  12. submitForm: function($formCompositeId, $formModel, $callback) {
  13. $callback();
  14. }
  15. }
  16. }
  17. },
  18.  
  19. $licketModelReloader: {
  20. get: function () {
  21. return {
  22.  
  23. }
  24. }
  25. }
  26. });
  27. }
  28. })(window.app || (window.app = {}));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement