https://github.com/cspanring/ember-wufoo-form
A thin wrapper around Wufoo forms for easier integration with Ember.js apps.
https://github.com/cspanring/ember-wufoo-form
addon ember-apps ember-cli wufoo-form
Last synced: 10 months ago
JSON representation
A thin wrapper around Wufoo forms for easier integration with Ember.js apps.
- Host: GitHub
- URL: https://github.com/cspanring/ember-wufoo-form
- Owner: cspanring
- License: mit
- Created: 2016-11-04T18:38:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-12T20:05:31.000Z (over 8 years ago)
- Last Synced: 2025-03-10T23:12:27.406Z (about 1 year ago)
- Topics: addon, ember-apps, ember-cli, wufoo-form
- Language: JavaScript
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ember-wufoo-form
[](https://travis-ci.org/cspanring/ember-wufoo-form)
[](https://emberobserver.com/addons/ember-wufoo-form)
A thin wrapper around [Wufoo Forms](http://www.wufoo.com), to make integration in Ember Apps easier.
## Installation
Install this addon with Ember CLI:
ember install ember-wufoo-form
## Usage
The `wufoo-form` component accepts a set of required and optional attributes:
{{wufoo-form
// required
formId=""
userName=""
// optional
target=",
height: ,
header: ,
ssl: ,
}}
The component will inject a script tag to load Wufoo's JavaScript embed library, which will add an iframe to display the form.
The required `formId` can be found on the "Share a link to your form" page in the Wufoo form admin.
## Collaboration
### Installation
* `git clone ` this repository
* `cd ember-wufoo-form`
* `npm install`
### Running
* `ember serve`
* Visit your app at [http://localhost:4200](http://localhost:4200).
### Running Tests
* `npm test` (Runs `ember try:each` to test your addon against multiple Ember versions)
* `ember test`
* `ember test --server`
### Building
* `ember build`
For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).