Skip to content

Commit 74df9c7

Browse files
Merge pull request #142 from angular/master
Update upstream
2 parents 2434fd7 + 5262039 commit 74df9c7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

karma-shared.conf.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,14 @@ module.exports = function(config, specificOptions) {
107107
'SL_iOS_10': {
108108
base: 'SauceLabs',
109109
browserName: 'iphone',
110+
platform: 'OS X 10.12',
110111
version: '10.3'
111112
},
112113
'SL_iOS_11': {
113114
base: 'SauceLabs',
114115
browserName: 'iphone',
115-
version: '11'
116+
platform: 'OS X 10.12',
117+
version: '11.3'
116118
},
117119

118120
'BS_Chrome': {

src/ng/directive/ngModelOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ModelOptions.prototype = {
4141
options = extend({}, options);
4242

4343
// Inherit options from the parent if specified by the value `"$inherit"`
44-
forEach(options, /* @this */ function(option, key) {
44+
forEach(options, /** @this */ function(option, key) {
4545
if (option === '$inherit') {
4646
if (key === '*') {
4747
inheritAll = true;

0 commit comments

Comments
 (0)