module.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 'use strict';
  2. System.register(['./datasource', './query_ctrl'], function (_export, _context) {
  3. "use strict";
  4. var GenericDatasource, GenericDatasourceQueryCtrl, GenericConfigCtrl, GenericQueryOptionsCtrl, GenericAnnotationsQueryCtrl;
  5. function _classCallCheck(instance, Constructor) {
  6. if (!(instance instanceof Constructor)) {
  7. throw new TypeError("Cannot call a class as a function");
  8. }
  9. }
  10. return {
  11. setters: [function (_datasource) {
  12. GenericDatasource = _datasource.GenericDatasource;
  13. }, function (_query_ctrl) {
  14. GenericDatasourceQueryCtrl = _query_ctrl.GenericDatasourceQueryCtrl;
  15. }],
  16. execute: function () {
  17. _export('ConfigCtrl', GenericConfigCtrl = function GenericConfigCtrl() {
  18. _classCallCheck(this, GenericConfigCtrl);
  19. });
  20. GenericConfigCtrl.templateUrl = 'partials/config.html';
  21. _export('QueryOptionsCtrl', GenericQueryOptionsCtrl = function GenericQueryOptionsCtrl() {
  22. _classCallCheck(this, GenericQueryOptionsCtrl);
  23. });
  24. GenericQueryOptionsCtrl.templateUrl = 'partials/query.options.html';
  25. _export('AnnotationsQueryCtrl', GenericAnnotationsQueryCtrl = function GenericAnnotationsQueryCtrl() {
  26. _classCallCheck(this, GenericAnnotationsQueryCtrl);
  27. });
  28. GenericAnnotationsQueryCtrl.templateUrl = 'partials/annotations.editor.html';
  29. _export('Datasource', GenericDatasource);
  30. _export('QueryCtrl', GenericDatasourceQueryCtrl);
  31. _export('ConfigCtrl', GenericConfigCtrl);
  32. _export('QueryOptionsCtrl', GenericQueryOptionsCtrl);
  33. _export('AnnotationsQueryCtrl', GenericAnnotationsQueryCtrl);
  34. }
  35. };
  36. });
  37. //# sourceMappingURL=module.js.map