APIs

Show:
  1. /**
  2. A public terminal for users to collect queue numbers
  3. @class FQTermRegistration
  4. @constructor
  5. @return {Object} instantiated FQTermRegistration
  6. **/
  7. define(['jquery', 'backbone', 'bootbox'], function ($, Backbone, Bootbox) {
  8.  
  9. var FQTermRegistration = Backbone.View.extend({
  10.  
  11. /**
  12. Constructor
  13. @method initialize
  14. **/
  15. initialize: function () {
  16. }
  17. });
  18.  
  19. return FQTermRegistration;
  20.  
  21. });
  22.  
  23.