09082da7 by Michael Richards

Build 0.5.7.

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