Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-dimitru committed Apr 12, 2015
1 parent 5d35ec6 commit b750604
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
base64@1.0.3
blaze@2.1.1
blaze@2.1.2
blaze-tools@1.0.3
deps@1.0.7
ejson@1.0.6
Expand All @@ -15,7 +15,7 @@ minimongo@1.0.8
observe-sequence@1.0.6
ordered-dict@1.0.3
ostrio:jsextensions@0.0.4
ostrio:templatehelpers@0.3.0
ostrio:templatehelpers@0.3.1
random@1.0.3
reactive-var@1.0.5
spacebars-compiler@1.0.6
Expand Down
6 changes: 3 additions & 3 deletions ostrio:templatehelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ var compare = function(operator, first, second){
}

if(_.isString(second) && second.indexOf('|') !== -1){
var Things = second.split('|')
var res = []
var Things = second.split('|');
var res = [];
for (var i = Things.length - 1; i >= 0; i--) {
res.push(compare(operator, first, Things[i]));
};
}

return res.inArray(true);
}else{
Expand Down
6 changes: 3 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Package.describe({
name: 'ostrio:templatehelpers',
version: '0.3.0',
summary: 'Template helpers for Session, compare values and debug/log',
version: '0.3.1',
summary: 'Template helpers for Session, logical operations and debug',
git: 'https://github.com/VeliovGroup/Meteor-Template-helpers',
documentation: 'README.md'
});

Package.onUse(function(api) {
api.versionsFrom('1.0.3.1');
api.versionsFrom('1.0');
api.use(['templating', 'underscore', 'ostrio:jsextensions@0.0.4'], 'client');
api.addFiles('ostrio:templatehelpers.js', 'client');
});

0 comments on commit b750604

Please # to comment.