Update Chrome message + add docs button
This commit is contained in:
parent
6dd8300fa5
commit
537494b1aa
1 changed files with 6 additions and 8 deletions
|
|
@ -27,15 +27,13 @@
|
||||||
<p class="notice">
|
<p class="notice">
|
||||||
Regrettably support for
|
Regrettably support for
|
||||||
<a href="https://caniuse.com/css-paged-media">@page</a> is very poor
|
<a href="https://caniuse.com/css-paged-media">@page</a> is very poor
|
||||||
in most browsers. Use Google Chrome for best results when printing
|
in most browsers. Use MS Edge, Opera or Google Chrome for best
|
||||||
or creating PDFs.
|
results when printing or creating PDFs.
|
||||||
</p>
|
</p>
|
||||||
|
<button @click="$router.push({ path: 'docs' })">Docs</button>
|
||||||
</div>
|
</div>
|
||||||
</pane>
|
</pane>
|
||||||
<pane
|
<pane :size="panel_sizes[1]" :class="currentStream">
|
||||||
:size="panel_sizes[1]"
|
|
||||||
:class="currentStream"
|
|
||||||
>
|
|
||||||
<Content
|
<Content
|
||||||
:print="!show_ui || expand_content"
|
:print="!show_ui || expand_content"
|
||||||
:show_message_data="show_message_data"
|
:show_message_data="show_message_data"
|
||||||
|
|
@ -96,8 +94,8 @@ export default {
|
||||||
return this.show_ui ? "ui" : "print";
|
return this.show_ui ? "ui" : "print";
|
||||||
},
|
},
|
||||||
currentStream() {
|
currentStream() {
|
||||||
return this.$store.state.currentStream
|
return this.$store.state.currentStream;
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
resizer(panels) {
|
resizer(panels) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue