Kohei Yoshino
Kohei Yoshino
The [Intersection Observer API](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) is now on Firefox 52 Nightly.
I should say sorry for my messy code. The bug-related views and controllers are still complicated. The user story is a single field that won't repeat like comments, history or...
A simple `if-else` switch should be able to be implemented easily as part of https://github.com/bzdeck/flaretail.js/issues/28. I'll work on it tomorrow. The markup may simply add the `data-if` attribute like this:...
Not tomorrow, I have already done! https://github.com/bzdeck/flaretail.js/commit/e81c9e2c3dbb9ed699f62c9a3a3e728d2daf646a Updated [my minimal implementation](https://github.com/bzdeck/bzdeck/compare/280-user-story) accordingly, for reference. As you see, you have to update the vendor submodule: ``` bash cd webroot/vendor/flaretail.js git remote...
The expand/collapse code is not in FlareTail.js for now... I'm doing it manually on comments like this: views/timeline-entry.js [L84-L85](https://github.com/bzdeck/bzdeck/blob/280-user-story/webroot/static/scripts/views/timeline-entry.js#L84-L85) and [L162-L169](https://github.com/bzdeck/bzdeck/blob/280-user-story/webroot/static/scripts/views/timeline-entry.js#L162-L169)
Yeah, it can probably be similar to comments, as [Bugzilla](https://bugzilla.mozilla.org/show_bug.cgi?id=1094759&redirect=no) does. We don't need an extra template here; a comment has the author's avatar, reply button, etc. but User Story...
This is blocked by #365. I don't want to write code for both 4.4 (single alias) and 5.1 (multiple aliases).
The notification has been disabled in #215. I'll work on this along with the Notification Center.
This can now be done by [Service Workers](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API). Let's have background sync and push notifications, even when BzDeck is not opened in a browser tab. The current blocker is [Bug...
A service worker can be used later once `Clients.openWindow()` is implemented on all platforms. Example: https://serviceworke.rs/push-clients_service-worker_doc.html