This repository has been archived by the owner on Feb 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compatibility of extensions for firefox
Currently a bug with vue <transition> and firefox extensions which results in TypeError: 'requestAnimationFrame' called on an object that does not implement interface Window. Stack trace: zt@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:6:30523 Gt@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:7:551 tn@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:7:1640 d@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:6:23084 o@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:6:22291 xt/<@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:6:26311 we/e.prototype._update@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:6:10301 we/e.prototype._mount/n._watcher<@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:6:10082 Ji.prototype.get@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:7:26477 Ji.prototype.run@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:7:27130 z@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:6:4802 Ai</</<@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:7:23148 e@resource://gre/modules/ExtensionContent.jsm -> moz-extension://3b35a7b5-6bf4-744d-900b-04c8768fdd55/js/content_script.js:7:22607 see Semantic-Org/Semantic-UI#3855
- Loading branch information
Showing
7 changed files
with
55 additions
and
34 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,4 @@ | ||
# frontend | ||
> the vue.js frontend for linky | ||
> A Vue.js project | ||
## Build Setup | ||
|
||
``` bash | ||
# install dependencies | ||
npm install | ||
|
||
# serve with hot reload at localhost:8080 | ||
npm run dev | ||
|
||
# build for production with minification | ||
npm run build | ||
|
||
# lint all *.js and *.vue files | ||
npm run lint | ||
|
||
# run unit tests | ||
npm test | ||
``` | ||
|
||
For more information see the [docs for vueify](https://github.com/vuejs/vueify). | ||
See base README.md for dev setup |
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