Skip to content

Commit

Permalink
fix(client): add ES5 shim
Browse files Browse the repository at this point in the history
Karma client now uses core-js ES5 shim in order to support IE8.
Usage of dom-serializer had previously broken IE8 support.

Closes #1529
  • Loading branch information
Kevin WENNER committed Aug 4, 2015
1 parent 69cd909 commit 14c30b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/main.js
@@ -1,6 +1,7 @@
/* global io */
/* eslint-disable no-new */

require('core-js/modules/es5')

This comment has been minimized.

Copy link
@zloirock

zloirock Aug 5, 2015

If you wanna use ES5 shim, please, use core-js/es5 entry point - internal modular structure can be changed in the future.

var Karma = require('./karma')
var StatusUpdater = require('./updater')
var util = require('./util')
Expand Down

0 comments on commit 14c30b7

Please sign in to comment.