3.0.11
This fixes a bug with compute setters tied to html elements:
var input = document.createElement("input");
var comp = compute(input, "value", "input");
comp("foo");
ok(input.value === "foo");This fixes a bug with compute setters tied to html elements:
var input = document.createElement("input");
var comp = compute(input, "value", "input");
comp("foo");
ok(input.value === "foo");