module.ts 411 B

12345678910111213141516171819202122
  1. ///<reference path="../../../headers/common.d.ts" />
  2. import {PanelCtrl} from '../../../features/panel/panel_ctrl';
  3. class TestPanelCtrl extends PanelCtrl {
  4. constructor($scope) {
  5. super($scope);
  6. }
  7. }
  8. var panel = {
  9. templateUrl: `app/plugins/panel/test/module.html`,
  10. controller: TestPanelCtrl,
  11. link: function(scope, elem) {
  12. console.log('panel link');
  13. }
  14. };
  15. export {
  16. TestPanelCtrl,
  17. panel,
  18. }