Skip to content

Commit

Permalink
Fixed bugs with building
Browse files Browse the repository at this point in the history
  • Loading branch information
trunerd authored and dtracers committed Jun 16, 2016
1 parent bd153d2 commit 44e3c9d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "SketchRecognitionFramework",
"version": "0.0.5",
"dependencies": {
"stacktrace-js": "stacktracejs/stacktrace.js#98574f0dfe3d831cde75772fd34e972e7b7f95f1"
"stacktrace-js": "stacktracejs/stacktrace.js#98574f0dfe3d831cde75772fd34e972e7b7f95f1",
"node-define": "0.1.1",
"requirejs": "2.2.0",
"protobufjs": "5.0.1",
"node-amd-require": "0.2.2"
},
"devDependencies": {
"grunt": "~0.4.2",
Expand All @@ -24,16 +28,11 @@
"mocha": "2.3.3",
"xunit-file": "0.0.9",
"grunt-mkdir": "0.1.2",
"jquery": "2.1.4",
"jsdom": "7.0.0",
"barrier": "dtracers/node-barrier#v1.0.1",
"chai": "*",
"hooker": "0.2.3",
"protobufjs": "5.0.1",
"grunt-exec": "0.4.6",
"requirejs": "2.2.0",
"node-define": "0.1.1",
"node-amd-require": "0.2.2",
"babel-polyfill": "6.9.1"
}
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.coursesketch</groupId>
<artifactId>recognition.framework</artifactId>
<version>1.0-SNAPSHOT</version>
<version>3.0.2</version>
<name>SketchRecognitionFramework</name>
<packaging>jar</packaging>

Expand Down
2 changes: 1 addition & 1 deletion src/main/js/protobufUtils/classCreator.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ define([], function() {
* @returns {Boolean} true if the object is not defined. (Only not defined being null will return false)
*/
var isUndefined = function(object) {
return typeof object === 'undefined' || object == null;
return typeof object === 'undefined' || object === null;
};

/**
Expand Down

0 comments on commit 44e3c9d

Please sign in to comment.