linter fixes
This commit is contained in:
parent
d73b0afd36
commit
f5711d953d
1 changed files with 10 additions and 5 deletions
|
|
@ -14,19 +14,24 @@
|
||||||
for use in clinics acquiring blood smear samples using a 100x
|
for use in clinics acquiring blood smear samples using a 100x
|
||||||
oil-immersion objective, with a Raspberry Pi Camera v2.
|
oil-immersion objective, with a Raspberry Pi Camera v2.
|
||||||
</p>
|
</p>
|
||||||
<p class="uk-margin-small" :class="{'uk-text-muted': !imjoyPermitted}">
|
<p class="uk-margin-small" :class="{ 'uk-text-muted': !imjoyPermitted }">
|
||||||
<label :disabled="!imjoyPermitted">
|
<label :disabled="!imjoyPermitted">
|
||||||
<input v-model="imjoyEnabled" class="uk-checkbox" type="checkbox" :disabled="!imjoyPermitted"/>
|
<input
|
||||||
|
v-model="imjoyEnabled"
|
||||||
|
class="uk-checkbox"
|
||||||
|
type="checkbox"
|
||||||
|
:disabled="!imjoyPermitted"
|
||||||
|
/>
|
||||||
Enable ImJoy plugin engine
|
Enable ImJoy plugin engine
|
||||||
</label>
|
</label>
|
||||||
</p>
|
</p>
|
||||||
<p class="uk-margin-small" v-if="imjoyPermitted">
|
<p v-if="imjoyPermitted" class="uk-margin-small">
|
||||||
<a href="https://imjoy.io/">ImJoy</a> enables integration with a wide
|
<a href="https://imjoy.io/">ImJoy</a> enables integration with a wide
|
||||||
variety of microscopy and image analysis applications, including ImageJ.JS
|
variety of microscopy and image analysis applications, including ImageJ.JS
|
||||||
and Kaibu. Support for ImJoy within the OFM software is currently
|
and Kaibu. Support for ImJoy within the OFM software is currently
|
||||||
experimental, and it may slow down loading of the application.
|
experimental, and it may slow down loading of the application.
|
||||||
</p>
|
</p>
|
||||||
<p class="uk-margin-small uk-text-muted" v-if="!imjoyPermitted">
|
<p v-if="!imjoyPermitted" class="uk-margin-small uk-text-muted">
|
||||||
ImJoy plugins are disabled in this build of the OpenFlexure software.
|
ImJoy plugins are disabled in this build of the OpenFlexure software.
|
||||||
</p>
|
</p>
|
||||||
<p class="uk-margin-small">
|
<p class="uk-margin-small">
|
||||||
|
|
@ -76,7 +81,7 @@ export default {
|
||||||
this.$store.commit("changeGalleryEnabled", value);
|
this.$store.commit("changeGalleryEnabled", value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
imjoyPermitted: function () {
|
imjoyPermitted: function() {
|
||||||
// ImJoy may be disabled using an environment variable.
|
// ImJoy may be disabled using an environment variable.
|
||||||
// If this function returns false, it is never possible to
|
// If this function returns false, it is never possible to
|
||||||
// use ImJoy, so we should gray out the option.
|
// use ImJoy, so we should gray out the option.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue