mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-15 06:13:30 -06:00
fix Michel typo, update app's
latest small changes
This commit is contained in:
@@ -9,8 +9,12 @@
|
||||
</b-card>
|
||||
<div v-if="episode != null">
|
||||
<b-card v-for="(scene, scene_index) in episode.scenes" :key="`scene-${scene_index}`" :id="scene_index"
|
||||
class="mb-1" body-class="p-0 py-2">
|
||||
<b-card-text>
|
||||
class="mb-1" body-class="p-0">
|
||||
<b-card-text class="my-2">
|
||||
<!-- <span v-if="scene.deleted" class="mt-n2 mb-4 text-muted deleted-scene pl-2"-->
|
||||
<!-- :footer="`Deleted Scene ${scene.deleted}`">-->
|
||||
<!-- Deleted Scene {{ scene.deleted }}-->
|
||||
<!-- </span>-->
|
||||
<QuoteList :quotes="scene.quotes"></QuoteList>
|
||||
</b-card-text>
|
||||
</b-card>
|
||||
@@ -20,6 +24,7 @@
|
||||
|
||||
<style>
|
||||
.card-title { font-family: 'Montserrat', sans-serif; font-weight: 600; }
|
||||
.deleted-scene { font-size: 0.75em; line-height: 12px; }
|
||||
</style>
|
||||
|
||||
<script>
|
||||
@@ -40,7 +45,8 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
getEpisode() {
|
||||
const path = `http://localhost:5000/api/episode/${this.$route.params.season}/${this.$route.params.episode}/`;
|
||||
const path = `http://${process.env.VUE_APP_HOST}:${process.env.VUE_APP_FLASK_PORT}/api/episode/\
|
||||
${this.$route.params.season}/${this.$route.params.episode}/`;
|
||||
axios.get(path)
|
||||
.then((res) => {
|
||||
this.episode = res.data;
|
||||
|
||||
@@ -30,7 +30,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
getStats() {
|
||||
const path = 'http://localhost:5000/api/stats/';
|
||||
const path = `http://${process.env.VUE_APP_HOST}:${process.env.VUE_APP_FLASK_PORT}/api/stats/`;
|
||||
axios.get(path)
|
||||
.then((res) => {
|
||||
this.stats = res.data;
|
||||
|
||||
@@ -12,11 +12,6 @@
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
/*tr {*/
|
||||
/* &:not(:first-child) {*/
|
||||
/* border-top: 1px solid rgba(255, 255, 255, 0.1);*/
|
||||
/* }*/
|
||||
/*}*/
|
||||
.quote-list > tr {
|
||||
white-space: nowrap;
|
||||
&:hover { background-color: #242424; }
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
|
||||
.accordion {
|
||||
.list-group-item {
|
||||
padding: 10px 20px;
|
||||
a { display: block; }
|
||||
|
||||
.badge { float: right; min-width: 36px; }
|
||||
@@ -95,7 +96,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
getSeasons() {
|
||||
const path = 'http://localhost:5000/api/episodes/';
|
||||
const path = `http://${process.env.VUE_APP_HOST}:${process.env.VUE_APP_FLASK_PORT}/api/episodes/`;
|
||||
axios.get(path)
|
||||
.then((res) => {
|
||||
this.seasons = res.data;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -64,7 +64,7 @@ Michael|Me no wanna hear that, Jan. Because downsizing is a bitch. It is a real
|
||||
-
|
||||
Michael|Question. How long do we have to… [Telephone rings] Oh uh, Todd Packer, terrific rep. Do you mind if I take it?
|
||||
Jan|Go ahead.
|
||||
Michel|Packman.
|
||||
Michael|Packman.
|
||||
Todd Packer|Hey, you big queen.
|
||||
Michael|Oh, that’s not appropriate.
|
||||
Todd Packer|Hey, is old Godzillary coming in today?
|
||||
@@ -319,4 +319,4 @@ Dwight|I understand. It’s in a blind spot because I’m trained in several mar
|
||||
Documentary Crew Member|[talking over Dwight] It’s…
|
||||
Dwight|I’m doing my job.
|
||||
-!12
|
||||
Michael|I think better to be a happy idiot then a, um… Then someone who knows the truth.
|
||||
Michael|I think better to be a happy idiot then a, um… Then someone who knows the truth.
|
||||
|
||||
Reference in New Issue
Block a user