index.js 299 B

12345678910111213
  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. console.log('mock extension activated')
  9. window.commands = application.commands;
  10. }
  11. }
  12. ]