APIs

Show:
  1. /**
  2. The Core Application StackView between Login screen and Main app
  3. @class AppEntryFaderView
  4. @constructor
  5. @return {object} instantiated AppEntryFaderView
  6. **/
  7. define(['jquery', 'backbone', 'StackView'], function ($, Backbone, StackView) {
  8.  
  9. Backbone.SERVICES.APP_ENTRY_FADER_VIEW = 'AppEntryFaderView';
  10.  
  11. var AppEntryFaderView = 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 AppEntryFaderView;
  23. });