index.js 363 B

1234567891011121314
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. module.exports = [
  4. {
  5. id: 'mockextension',
  6. autoStart: true,
  7. activate: function (application) {
  8. // eslint-disable-next-line no-console
  9. console.log('mock extension activated');
  10. window.commands = application.commands;
  11. }
  12. }
  13. ];