A Dashing widget that displays all currently open merge requests for a GitLab group. Based off of the widget: GitHub Organization Open Pull Requests by dragonai.
The only dependency is gitlab.
Add it to Dashing's Gemfile:
A Dashing widget that displays all currently open merge requests for a GitLab group. Based off of the widget: GitHub Organization Open Pull Requests by dragonai.
The only dependency is gitlab.
Add it to Dashing's Gemfile:
| class Dashing.JenkinsBuildView extends Dashing.Widget | |
| ready: -> | |
| # This is fired when the widget is done being rendered | |
| onData: (data) -> | |
| # Handle incoming data | |
| # You can access the html node of this widget with `@node` | |
| # Example: $(@node).fadeOut().fadeIn() will make the node flash each time data comes in. |