-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from Wakamai-Fondue/more-vue-updates
More vue updates
- Loading branch information
Showing
13 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,18 @@ | |
@drop.prevent="getFont" | ||
@dragover.prevent="dragStatus(true)" | ||
@mouseout="dragStatus(false)" | ||
@keydown.esc="toggleModal(true)" | ||
@keydown.esc="toggleInfoModal(true)" | ||
tabindex="0" | ||
:class="{ dragging, working }" | ||
> | ||
<TheFondue | ||
@getFont="getFont" | ||
@getExampleFont="getExampleFont" | ||
@toggleModal="toggleModal" | ||
@toggleInfoModal="toggleInfoModal" | ||
:error="error" | ||
/> | ||
<FontReport :font="font" :isExamplefont="isExamplefont" /> | ||
<InfoModal v-if="showModal" @toggleModal="toggleModal" /> | ||
<InfoModal v-if="showInfoModal" @toggleInfoModal="toggleInfoModal" /> | ||
<div class="beta-message"> | ||
Heya! You’re looking at the beta site. Comments, bugs or feedback? | ||
<a href="mailto:[email protected]">Let me know!</a> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import toggleModal from "../mixins/toggleModal.js"; | ||
import toggleInfoModal from "../mixins/toggleInfoModal.js"; | ||
|
||
export default { | ||
mixins: [toggleModal], | ||
mixins: [toggleInfoModal], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters