tether 0.2.0

Extremely simple bindings to an OS web view.
#![windows_subsystem = "windows"]

extern crate tether;

use tether::{Handler, Window};

fn main() {
    tether::builder()
        .html("
        	<p>Try closing me! On Windows, try minimizing me, too!</p>
        	<input placeholder='A pointless text field!'>
        ")
        .handler(MyHandler)
        .start();
}

struct MyHandler;

impl Handler for MyHandler {
    fn suspend(&mut self, win: Window) {
        win.eval("document.body.innerHTML += '<p>Now would be a good time to save things.</p>';");
        println!("Now would be a good time to save things.");
    }
}