Skip to content
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertBlackhart committed Jan 10, 2016
2 parents 98f4366 + e41b229 commit ee5c703
Show file tree
Hide file tree
Showing 45 changed files with 1,972 additions and 1,415 deletions.
4 changes: 2 additions & 2 deletions lib/src/display/blog_notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ part of couclient;
class BlogNotifier {
static const _LS_KEY = "cou_blog_post";
static const _RSS_URL = "http://childrenofur.com/feed/";
static const _ICON_URL = "http://childrenofur.com/assets/icon_72.png";
static const ICON_URL = "http://childrenofur.com/assets/icon_72.png";

static dynamic get _lastSaved {
if (localStorage[_LS_KEY] != null) {
Expand All @@ -21,7 +21,7 @@ class BlogNotifier {
new Notification(
"Children of Ur Blog",
body: "Click here to read the new post: \n$title",
icon: _ICON_URL
icon: ICON_URL
)..onClick.listen((_) {
window.open(link, "_blank");
});
Expand Down
Loading

0 comments on commit ee5c703

Please sign in to comment.