Skip to content

Commit

Permalink
introduced ![]
Browse files Browse the repository at this point in the history
  • Loading branch information
futurechan committed Apr 15, 2015
1 parent d3ce312 commit 7541174
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-expression-builder",
"version": "0.1.1",
"version": "0.1.2",
"authors": [
"Josh <joshua.bennett.chan@gmail.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/expression-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ angular.module('expression-builder', ['ui.bootstrap'])
scope.booleanOperators = ['AND', 'OR', 'XOR'];

if(scope.comparisonOperators === undefined)
scope.comparisonOperators = ['=', '<>', '<', '<=', '>', '>=', '[]'];
scope.comparisonOperators = ['=', '<>', '<', '<=', '>', '>=', '[]', '![]'];

if(scope.leftOperandProvider)
scope.leftOperandProvider = scope.leftOperandProvider()
Expand Down
2 changes: 1 addition & 1 deletion dist/expression-builder.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-expression-builder",
"version": "0.1.1",
"version": "0.1.2",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion src/js/expression-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ angular.module('expression-builder', ['ui.bootstrap'])
scope.booleanOperators = ['AND', 'OR', 'XOR'];

if(scope.comparisonOperators === undefined)
scope.comparisonOperators = ['=', '<>', '<', '<=', '>', '>=', '[]'];
scope.comparisonOperators = ['=', '<>', '<', '<=', '>', '>=', '[]', '![]'];

if(scope.leftOperandProvider)
scope.leftOperandProvider = scope.leftOperandProvider()
Expand Down

0 comments on commit 7541174

Please sign in to comment.