Skip to content

Commit

Permalink
updated app to work with current dev
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbruzzi committed Mar 19, 2024
1 parent 9f77915 commit 3368fe3
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,18 @@ import Toast from 'primevue/toast'
<GHIcon height="25" width="25"/>
</Button></a>
</div>
<<<<<<< HEAD

<div class="bot-right-nav">
<Button class="nav-btn" @click="getLocation">
<img src="./assets/icons/location.svg" height="30" width="30"/>
</Button>
</div>
</header>

=======
</header>
<div id="mobile-nav">
<Teleport to="#left-nav" :disabled="global.aspectRatio > 1.5">
<AutoComplete class="search" :style="{'width':'100%'}" :input-style="{'width': '100%'}" v-model="selection" :placeholder="ex" :suggestions="suggest" @complete="filterRes" @item-select="goTo" @focus.native="searchFocus(true)" @blur.native="searchFocus(false)"></AutoComplete>
</Teleport>
</div>
>>>>>>> dev

<RouterView />
</template>
Expand All @@ -51,12 +46,10 @@ import Toast from 'primevue/toast'
export default {
data() {
return {
<<<<<<< HEAD
filteredResults: [],
selection: "",
RAD2DEG: 180/Math.PI,
DEG2RAD: Math.PI/180
=======
DEG2RAD: Math.PI/180,
exs: [
"a building: Russell Sage",
"a dept. code: CSCI 1200",
Expand All @@ -66,7 +59,6 @@ export default {
ex: "",
suggest: [],
selection: ""
>>>>>>> dev
}
},
inject: ["global"],
Expand Down Expand Up @@ -271,15 +263,13 @@ header {
right: 0;
}
<<<<<<< HEAD
.bot-right-nav {
position: fixed;
pointer-events: none;
padding: .8rem 1rem;
bottom: 0;
right: 0;
}
=======
#mobile-nav {
width: 100%;
display: flex;
Expand All @@ -290,5 +280,4 @@ header {
z-index: 6;
}
>>>>>>> dev
</style>

0 comments on commit 3368fe3

Please sign in to comment.