Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.