[Basilisk] Issue MoonchildProductions/UXP#516 - Remove named function syntax from basilisk/components/feeds.

This commit is contained in:
athenian200 2020-03-06 10:34:19 -06:00 committed by Roy Tam
commit 7b4185d1ff

View file

@ -11,15 +11,15 @@ var SubscribeHandler = {
*/
_feedWriter: null,
init: function SH_init() {
init: function() {
this._feedWriter = new BrowserFeedWriter();
},
writeContent: function SH_writeContent() {
writeContent: function() {
this._feedWriter.writeContent();
},
uninit: function SH_uninit() {
uninit: function() {
this._feedWriter.close();
}
};