Skip to content

Commit

Permalink
+ v-if="viewId % view.length != 2"
Browse files Browse the repository at this point in the history
  • Loading branch information
stefian committed Oct 3, 2020
1 parent 0b8e29a commit 0ebd0b1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</div>
</div>

<div class="header-group opsNews">
<div class="header-group opsNews" v-if="viewId % view.length != 2">
<div class="title long">
<h2>{{ team.newOpsTitle }}</h2>
</div>
Expand All @@ -110,7 +110,7 @@
</div>
</div>

<div id="flags">
<div id="flags" v-if="viewId % view.length != 2">
<div v-for="index in 6" :key="index">
<img
class="flag"
Expand All @@ -122,7 +122,7 @@
</div>

<div id="ai-protocol" v-if="viewId % view.length != 1">
<div id="ai-prog">
<div id="ai-prog" v-if="viewId % view.length != 2">
<div class="buttons">
<button
class="next btn btn-warning"
Expand Down Expand Up @@ -486,7 +486,7 @@
</div>
</div>

<div id="ai-ops">
<div id="ai-ops" v-if="viewId % view.length != 2">
<div class="buttons">
<button class="next btn btn-primary" @click="nextService">
Services
Expand Down Expand Up @@ -688,13 +688,13 @@
<!-- </div> -->
</div>

<div class="background-signs">
<div class="background-signs" v-if="viewId % view.length != 2">
<p>
<span v-html="backgroundText"></span>
</p>
</div>

<div id="editor">
<div id="editor" v-if="viewId % view.length != 2">
<div class="buttons">
<div>
<h2 class="title">
Expand Down Expand Up @@ -857,7 +857,7 @@
</div>
</div>

<div id="footer">
<div id="footer" v-if="viewId % view.length != 2">
<div id="ai-engines" class="title-container">
<h4>
<a href="https://ai-cell.web.app">CEO</a>
Expand Down

0 comments on commit 0ebd0b1

Please sign in to comment.