Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stylesuxx/jquery-yosys
jQuery wrapper for yosys
https://github.com/stylesuxx/jquery-yosys
Last synced: about 1 month ago
JSON representation
jQuery wrapper for yosys
- Host: GitHub
- URL: https://github.com/stylesuxx/jquery-yosys
- Owner: stylesuxx
- Created: 2016-01-30T22:10:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-31T20:05:10.000Z (almost 9 years ago)
- Last Synced: 2023-03-13T08:15:45.859Z (over 1 year ago)
- Language: JavaScript
- Size: 2.55 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# jQuery yosysjs plugin
> A jQeury plugin to easily integrate [yosysjs](http://www.clifford.at/yosys/) into your page.A live demo of the yosys jQuery plugin can be found [here](http://stylesuxx.github.io/jquery-yosys/).
## Features
* Add and deltet files
* Persist files between sessions
* Fullscreen mode
* Command history## Structure
```HTML
```After including the plugin in your project you can simply invoke:
```JS
var options = {}
$('#yosys').yosys(options);
```## Events
A list of events that can be listened to with an *on* handler:* yosysAfterInit: Fires after yosys init is done.
## Options
### yosys
Options to be passed to yosys directly, they may be *true* or *false* and default to false if not set:* verbose
* logprint
* echo## Examples
Check out the demo folder for an example of how to use this jQuery plugin.