granite-ajax-saver:
[ This description is mirrored from README.md at github.com/LostInBrittany/granite-ajax-saver on 2019-05-22 ]
granite-ajax-saver
A lightweight element to save the response from an AJAX call into a file on the local filesystem
Hybrid Polymer element, 1.x-2.x ready
Doc & demo
https://lostinbrittany.github.io/granite-ajax-saver
Usage example
<granite-ajax-saver
url="./demo/anExampleFileToLoad.txt">
<div class="clickHere">Click here to save the content of `./demo/anExampleFileToLoad.txt` to a file</div>
</granite-ajax-saver>
Install
Install the component using Bower:
$ bower install LostInBrittany/granite-ajax-saver --save
Or download as ZIP.## Usage
-
Import Web Components’ polyfill (if needed):
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script> -
Import Custom Element:
<link rel="import" href="bower_components/granite-ajax-saver/granite-ajax-saver.html"> -
Start using it!
<granite-ajax-saver text="A new file will be created with this content"> <div class="clickHere">Click here to save a file</div> </granite-ajax-saver>
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -m 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D