aboutsummaryrefslogtreecommitdiffstats
path: root/src/Angular.js
diff options
context:
space:
mode:
authorIgor Minar2011-01-13 07:55:31 -0800
committerIgor Minar2011-01-13 07:55:31 -0800
commitb0be87f663e8684c1369e1bff740c1750ba17080 (patch)
tree8faf8ffdcc6654499e6a1a5851e9a3f6bac062d4 /src/Angular.js
parent9ccd2f0412ff97cdcb5c37fa3b75fea027d4e925 (diff)
downloadangular.js-b0be87f663e8684c1369e1bff740c1750ba17080.tar.bz2
fix for angular.Object.equals to handle equals({},null)
Diffstat (limited to 'src/Angular.js')
-rw-r--r--src/Angular.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Angular.js b/src/Angular.js
index 00e1d2a2..762291ef 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -631,6 +631,7 @@ function copy(source, destination){
*/
function equals(o1, o2) {
if (o1 == o2) return true;
+ if (o1 === null || o2 === null) return false;
var t1 = typeof o1, t2 = typeof o2, length, key, keySet;
if (t1 == t2 && t1 == 'object') {
if (o1 instanceof Array) {