Skip to content

Commit 073f007

Browse files
committed
rebuilt
1 parent ab1f5de commit 073f007

37 files changed

+3930
-27
lines changed

dist/angular-google-maps-street-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-google-maps 2.3.4 2016-08-15
1+
/*! angular-google-maps 2.3.4 2016-09-19
22
* AngularJS directives for Google Maps
33
* git: https://github.com/angular-ui/angular-google-maps.git
44
*/

dist/angular-google-maps-street-view.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps-street-view_dev_mapped.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps-street-view_dev_mapped.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps.js

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-google-maps 2.3.4 2016-08-15
1+
/*! angular-google-maps 2.3.4 2016-09-19
22
* AngularJS directives for Google Maps
33
* git: https://github.com/angular-ui/angular-google-maps.git
44
*/
@@ -1509,7 +1509,14 @@ Nicholas McCready - https://twitter.com/nmccready
15091509
without = _.without(this["interface"].scopeKeys, 'coords');
15101510
isEqual = _.every(without, (function(_this) {
15111511
return function(k) {
1512-
return _this.scopeOrModelVal(scope[k], scope, model1) === _this.scopeOrModelVal(scope[k], scope, model2);
1512+
var m1, m2;
1513+
m1 = _this.scopeOrModelVal(scope[k], scope, model1);
1514+
m2 = _this.scopeOrModelVal(scope[k], scope, model2);
1515+
if (scope.deepComparison) {
1516+
return _.isEqual(m1, m2);
1517+
} else {
1518+
return m1 === m2;
1519+
}
15131520
};
15141521
})(this));
15151522
return isEqual;
@@ -7020,7 +7027,8 @@ Original idea from: http://stackoverflow.com/questions/22758950/google-map-drawi
70207027
modelsByRef: '=modelsbyref',
70217028
type: '=?type',
70227029
typeOptions: '=?typeoptions',
7023-
typeEvents: '=?typeevents'
7030+
typeEvents: '=?typeevents',
7031+
deepComparison: '=?deepcomparison'
70247032
});
70257033
$log.info(this);
70267034
}
@@ -7114,7 +7122,8 @@ Original idea from: http://stackoverflow.com/questions/22758950/google-map-drawi
71147122
models: '=models',
71157123
chunk: '=chunk',
71167124
cleanchunk: '=cleanchunk',
7117-
control: '=control'
7125+
control: '=control',
7126+
deepComparison: '=deepcomparison'
71187127
});
71197128
},
71207129
link: function(scope, parent) {

dist/angular-google-maps.min.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps_dev_mapped.js

Lines changed: 13 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps_dev_mapped.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-google-maps_dev_mapped.min.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)