APIs

Show:
  1. /**
  2. Wait dialog used in StackView views
  3. @class WaitView
  4. @constructor
  5. @return {Object} instantiated WaitView
  6. **/
  7. define(['jquery', 'backbone'], function ($, Backbone) {
  8.  
  9. var WaitView = Backbone.View.extend({
  10.  
  11. /**
  12. Constructor
  13. @method initialize
  14. **/
  15. initialize: function () {
  16. },
  17.  
  18. render: function() {
  19. }
  20.  
  21. })
  22.  
  23. return WaitView;
  24.  
  25. });
  26.  
  27.