mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
js lint fix.
This commit is contained in:
parent
523831237d
commit
89f4e697c2
@ -47,10 +47,19 @@
|
||||
<li class="broadcast" v-if="admin">
|
||||
<div>
|
||||
<span>{{ $t('setting.broadcast_title') }}</span>
|
||||
<button v-if="!broadcast_is_active" @click.stop.prevent="$accessor.settings.broadcastCreate(broadcast_url)"><i class="fas fa-play"></i></button>
|
||||
<button v-else @click.stop.prevent="$accessor.settings.broadcastDestroy()" class="btn-red"><i class="fas fa-stop"></i></button>
|
||||
<button v-if="!broadcast_is_active" @click.stop.prevent="$accessor.settings.broadcastCreate(broadcast_url)">
|
||||
<i class="fas fa-play"></i>
|
||||
</button>
|
||||
<button v-else @click.stop.prevent="$accessor.settings.broadcastDestroy()" class="btn-red">
|
||||
<i class="fas fa-stop"></i>
|
||||
</button>
|
||||
</div>
|
||||
<input v-model="broadcast_url" :disabled="broadcast_is_active" class="input" placeholder="rtmp://a.rtmp.youtube.com/live2/<stream-key>" />
|
||||
<input
|
||||
v-model="broadcast_url"
|
||||
:disabled="broadcast_is_active"
|
||||
class="input"
|
||||
placeholder="rtmp://a.rtmp.youtube.com/live2/<stream-key>"
|
||||
/>
|
||||
</li>
|
||||
<li v-if="connected">
|
||||
<button @click.stop.prevent="logout">{{ $t('logout') }}</button>
|
||||
|
Loading…
Reference in New Issue
Block a user