Skip to content

Commit

Permalink
IE11 requires iframe
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed Sep 8, 2016
1 parent 8bbd605 commit 546e81b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ env:
- CXX=g++-4.8 BROWSER=windows-chrome-latest
- CXX=g++-4.8 BROWSER=windows-firefox-latest
- CXX=g++-4.8 BROWSER=windows-edge-latest
- CXX=g++-4.8 BROWSER=windows-ie-latest
- CXX=g++-4.8 BROWSER=linux-chrome-latest
- CXX=g++-4.8 BROWSER=linux-firefox-latest
- CXX=g++-4.8 BROWSER=ios-latest
Expand Down
2 changes: 1 addition & 1 deletion _develop/karma.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module.exports = function(config) {
config.browserDisconnectTolerance = 3;
config.browserNoActivityTimeout = 60000;
config.captureTimeout = 120000;
if (process.env.BROWSER === 'ios-latest' || process.env.BROWSER === 'android-latest') {
if (['ios-latest', 'android-latest', 'ie-lastest'].indexOf(process.env.BROWSER) > -1) {
config.client.useIframe = true;
}
}
Expand Down

0 comments on commit 546e81b

Please sign in to comment.