├── LICENSE ├── README.md ├── about.html ├── assets ├── css │ ├── bootstrap.css │ ├── font-awesome.min.css │ └── style.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── back.jpg │ └── work.jpg └── js │ └── bootstrap.min.js ├── bower.json ├── dist ├── feedback.0.2.0.js ├── feedback.0.2.1.js ├── feedback.0.3.0.js └── feedback.0.3.1.js ├── index.html └── src ├── base64.js ├── feedback.css ├── feedback.js ├── html2canvas.js ├── html2canvas.min.js └── icons.png /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 David Furlong, Kázmér Rapavi (original google feedback clone js) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | feedbackBot 2 | ======== 3 | 4 | The simplest feedback tool out there. 5 | Include feedbackBot and receive screenshots, description and browser info straight in your github issues. 6 | 7 | Built as a clone to Google's Feedback process 8 | 9 | ## Usage 10 | 11 | bower install feedback-bot 12 | 13 | OR 14 | 15 | Load jQuery, the plugin, and its CSS: 16 | ```html 17 | 18 | 19 | 20 | 21 | ``` 22 | 23 | AND THEN 24 | 25 | Init plugin: 26 | ```html 27 | 34 | ``` 35 | 36 | Add the button 37 | ```html 38 | 39 | ``` 40 | 41 | ## Requirements 42 | 43 | * jQuery 44 | * html2canvas 45 | 46 | ## Compatibility 47 | 48 | Pretty much it should be working on any browser with `canvas` support. Browsers with no canvas support won't display the feedback button. 49 | 50 | ## License 51 | 52 | feedbackBot is released under the MIT license. (See `LICENSE`) 53 | -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
69 |It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
70 |Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.
71 |Feedback lets you send us suggestions about our products. We welcome problem reports, feature ideas and general comments.
Start by writing a brief description:
Next we\'ll let you identify areas of the page related to your description.
Click and drag on the page to help us better understand your feedback. You can move this dialog if it\'s in the way.
Thank you for your feedback. We value every piece of feedback we receive.
We cannot respond individually to every one, but we will use your comments as we strive to improve your experience.
Sadly an error occured while sending your feedback. Please try again.
Feedback lets you send us suggestions about our products. We welcome problem reports, feature ideas and general comments.
Start by writing a brief description:
Next we\'ll let you identify areas of the page related to your description.
Click and drag on the page to help us better understand your feedback. You can move this dialog if it\'s in the way.
Thank you for your feedback. We value every piece of feedback we receive.
We cannot respond individually to every one, but we will use your comments as we strive to improve your experience.
Sadly an error occured while sending your feedback. Please try again.