APIs

Show:
  1. /**
  2. Settings Backbone > View
  3. @class FQQueuePropView
  4. @constructor
  5. @return {Object} instantiated FQQueuePropView
  6. **/
  7. define(['jquery', 'backbone'], function ($, Backbone) {
  8.  
  9. var FQQueuePropView = Backbone.View.extend({
  10.  
  11. /**
  12. Constructor
  13. @method initialize
  14. **/
  15. initialize: function () {
  16. var self = this;
  17. self.m_property = BB.comBroker.getService(BB.SERVICES['PROPERTIES_VIEW']);
  18. self.m_property.initPanel('#' + self.el.id);
  19. },
  20.  
  21. /**
  22. Load the properties panel via StackView
  23. @method showProp
  24. **/
  25. showProp: function(){
  26. var self = this;
  27. self.m_property.selectView(Elements.FASTERQ_QUEUE_PROPERTIES);
  28. }
  29. });
  30.  
  31. return FQQueuePropView;
  32. });
  33.  
  34.