2017-01-12 09:00:06 -05:00
|
|
|
class VersionCheckImage {
|
|
|
|
static bindErrorEvent(imageElement) {
|
|
|
|
imageElement.off('error').on('error', () => imageElement.hide());
|
2017-01-19 09:29:11 -05:00
|
|
|
}
|
2017-01-12 09:00:06 -05:00
|
|
|
}
|
2017-01-19 09:29:11 -05:00
|
|
|
|
2017-01-12 09:00:06 -05:00
|
|
|
window.gl = window.gl || {};
|
|
|
|
gl.VersionCheckImage = VersionCheckImage;
|
|
|
|
|
|
|
|
module.exports = VersionCheckImage;
|