-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
1,383 additions
and
4,315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
import WebExtension from './web-extension'; | ||
export default WebExtension.extend(); | ||
export default class extends WebExtension {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
/* eslint no-empty:0 */ | ||
import WebExtension from './web-extension'; | ||
|
||
export default WebExtension.extend({ | ||
export default class extends WebExtension { | ||
debug() { | ||
// WORKAROUND: temporarily workaround issues with firebug console object: | ||
// - https://github.com/tildeio/ember-extension/issues/94 | ||
// - https://github.com/firebug/firebug/pull/109 | ||
// - https://code.google.com/p/fbug/issues/detail?id=7045 | ||
try { | ||
this._super(...arguments); | ||
super.debug(...arguments); | ||
} catch (e) {} | ||
}, | ||
} | ||
|
||
log() { | ||
// WORKAROUND: temporarily workaround issues with firebug console object: | ||
// - https://github.com/tildeio/ember-extension/issues/94 | ||
// - https://github.com/firebug/firebug/pull/109 | ||
// - https://code.google.com/p/fbug/issues/detail?id=7045 | ||
try { | ||
this._super(...arguments); | ||
super.log(...arguments); | ||
} catch (e) {} | ||
}, | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.