editor-codeblock.pug 548 B

12345678910111213141516171819
  1. .modallayer#modal-editor-codeblock
  2. .modallayer-content
  3. .columns
  4. .column
  5. h3 Code Block
  6. .column.is-narrow
  7. p.control
  8. span.select
  9. select(style={width: '300px'}, v-model='modeSelected')
  10. option(v-for="mode in modes" v-bind:value='mode.name') {{ mode.caption }}
  11. .column.is-narrow
  12. a.button.is-warning.is-outlined(v-on:click="cancel") Cancel
  13. .column.is-narrow
  14. a.button.is-primary.is-outlined(v-on:click="insertCode") Insert Code Block
  15. .ace-container(style={'border-radius':'5px'})
  16. #codeblock-editor