APIs

Show:
  1. /**
  2. Popup Modal
  3. @class PopModalView
  4. @constructor
  5. @return {object} instantiated PopModalView
  6. **/
  7. define(['jquery', 'backbone', 'StackView'], function ($, Backbone, StackView) {
  8.  
  9. Backbone.SERVICES.POP_MODAL_VIEW = 'PopModalView';
  10.  
  11. var PopModalView = Backbone.StackView.Modal.extend({
  12.  
  13. /**
  14. @method AppViewSlider
  15. @param {Constructor} none
  16. **/
  17. initialize: function () {
  18. Backbone.StackView.ViewPort.prototype.initialize.call(this);
  19. }
  20. });
  21.  
  22. return PopModalView;
  23. });