Skip to content

Commit

Permalink
update npm version
Browse files Browse the repository at this point in the history
  • Loading branch information
constantology committed May 7, 2012
1 parent eb153cd commit c4f00bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -24,5 +24,5 @@
"type" : "git", "type" : "git",
"url" : "git@github.com:constantology/Templ8.git" "url" : "git@github.com:constantology/Templ8.git"
}, },
"version" : "0.9.4" "version" : "0.9.5"
} }
2 changes: 1 addition & 1 deletion src/Templ8.js
Expand Up @@ -191,7 +191,7 @@
last : { get : function() { return this._[this.keys[this.lastIndex]]; } }, last : { get : function() { return this._[this.keys[this.lastIndex]]; } },
next : { get : function() { return this._[this.keys[this.index + 1]] || U; } }, next : { get : function() { return this._[this.keys[this.index + 1]] || U; } },
prev : { get : function() { return this._[this.keys[this.index - 1]] || U; } }, prev : { get : function() { return this._[this.keys[this.index - 1]] || U; } },

firstKey : { get : function() { return this.keys[0]; } }, firstKey : { get : function() { return this.keys[0]; } },
lastKey : { get : function() { return this.keys[this.lastIndex]; } }, lastKey : { get : function() { return this.keys[this.lastIndex]; } },
nextKey : { get : function() { return this.keys[this.index + 1] || U; } }, nextKey : { get : function() { return this.keys[this.index + 1] || U; } },
Expand Down

0 comments on commit c4f00bb

Please sign in to comment.