honeinc / hone-embed

Simple interactions with embedded Hone Questions and Quizzes
http://gohone.com
2 stars 0 forks source link

Hone Embed

Simple interactions with embedded Hone Questions and Quizzes.

Installation

If you copied the embeded code from the gohone.com interface you can just add a data-hone attribute to the iframe to enable the code to run against that embed. This should be loaded before the script.

<iframe src="https://github.com/honeinc/hone-embed/raw/master/..?embed=true" data-hone data-resize="true"></iframe>

optionally you can try out a beta feature that allows the iframe to resize its height dynamically to the content inside of the iframe by adding a data-resize attribute to the iframe.

Include the script into your page ( script located in build directory ) or our cdn

<script src="https://s3-us-west-1.amazonaws.com/static-v1.gohone.com/sdk/2.10.8/hone.min.js"></script>

Usage

After you load the script we export out a hone variable into the window, or global scope. First you need to initialize the script and then you can attach event bindings to that variable.

hone.init();

hone.on( 'voted', function( e ) {
    /* 
    when the users votes, you could, for example:
        - refresh ads on the page
        - look at the selected item in the event and update ads
        - track a metric of your own
    */
} );

More working examples can be found in examples directory.

Available Events

Examples

Checkout the examples directory

Creating a build

Also if you want a minified version, you can build one. You will need nodejs and grunt.

# to install global grunt run
$ npm install -g grunt-cli 

Once you have those installed you can then run in your teminal.

$ npm install

This will install all the development dependecies and then run

$ grunt dist

This will create a dist directory and compile a script with the name hone-embed-0.1.0.js that file will be compressed and read to use in the scrip tag.

Contributing

You will need grunt cli.

$ npm install -g grunt-cli

Then install dev dependecies

$ npm install

To build embed script and run server for examples

$ grunt

Once you have a working piece of code open a pull request. :+1:

License

The MIT License (MIT)

Copyright (c) 2014 Hone, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.