APIs

Show:
  1. /**
  2. The Scene Fader view
  3. @class SceneSliderView
  4. @constructor
  5. @return {object} instantiated SceneSliderView
  6. **/
  7. define(['jquery', 'backbone', 'StackView'], function ($, Backbone, StackView) {
  8.  
  9. BB.SERVICES.SCENE_SLIDER_VIEW = 'SceneSliderView';
  10.  
  11. var SceneSliderView = BB.StackView.Slider.extend({
  12.  
  13. /**
  14. Constructor
  15. @method initialize
  16. **/
  17. initialize: function () {
  18. BB.comBroker.setService(BB.SERVICES.SCENE_SLIDER_VIEW, this);
  19. BB.StackView.ViewPort.prototype.initialize.call(this);
  20. }
  21. });
  22.  
  23. return SceneSliderView;
  24. });