APIs

Show:
  1. /**
  2. The Core Application StackView between main modules (campaign / resources / settings etc)
  3. @class AppContentFaderView
  4. @constructor
  5. @return {object} instantiated AppContentFaderView
  6. **/
  7. define(['jquery', 'backbone', 'StackView'], function ($, Backbone, StackView) {
  8.  
  9. Backbone.SERVICES.APP_CONTENT_FADER_VIEW = 'AppContentFaderView';
  10.  
  11. var AppContentFaderView = Backbone.StackView.Fader.extend({
  12.  
  13. /**
  14. Constructor
  15. @method initialize
  16. **/
  17. initialize: function () {
  18. Backbone.StackView.ViewPort.prototype.initialize.call(this);
  19. }
  20. });
  21.  
  22. return AppContentFaderView;
  23. });