Timers and other features for Heroes of the Storm
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- 'use strict'
-
- /* eslint-disable */
- require('eventsource-polyfill')
- var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
-
- hotClient.subscribe(function (event) {
- if (event.action === 'reload') {
- window.location.reload()
- }
- })
|