mirror of
https://github.com/discourse/discourse.git
synced 2025-02-15 19:22:45 +08:00
11 lines
296 B
JavaScript
11 lines
296 B
JavaScript
export default {
|
|
name: 'ie9-hacks',
|
|
initialize: function() {
|
|
if (!window) { return; }
|
|
|
|
// IE9 does not support a console object unless the developer tools are open
|
|
if (!window.console) { window.console = {}; }
|
|
if (!window.console.log) { window.console.log = Ember.K; }
|
|
}
|
|
};
|