09082da7 by Michael Richards

Build 0.5.7.

1 parent 4e02f611
......@@ -2,7 +2,7 @@
"name": "rivets",
"repo": "mikeric/rivets",
"description": "Declarative data binding facility.",
"version": "0.5.6",
"version": "0.5.7",
"keywords": ["data binding", "templating"],
"scripts": ["dist/rivets.js"],
"main": "dist/rivets.js",
......
// Rivets.js
// version: 0.5.6
// version: 0.5.7
// author: Michael Richards
// license: MIT
(function() {
......@@ -636,13 +636,13 @@
unless: {
block: true,
bind: function(el) {
return rivets.binders["if"].bind.call(this, el);
return Rivets.binders["if"].bind.call(this, el);
},
unbind: function() {
return rivets.binders["if"].unbind.call(this);
return Rivets.binders["if"].unbind.call(this);
},
routine: function(el, value) {
return rivets.binders["if"].routine.call(this, el, !value);
return Rivets.binders["if"].routine.call(this, el, !value);
}
},
"on-*": {
......
{
"name": "rivets",
"description": "Declarative data binding facility.",
"version": "0.5.6",
"version": "0.5.7",
"author": "Michael Richards",
"url": "http://rivetsjs.com",
"main": "./dist/rivets.js",
......
# Rivets.js
# =========
# > version: 0.5.6
# > version: 0.5.7
# > author: Michael Richards
# > license: MIT
# >
......