summaryrefslogtreecommitdiffstats
path: root/gnomeshell@pidgin.im
diff options
context:
space:
mode:
authorIzhar Firdaus <izhar@inigo-tech.com>2011-04-14 20:35:25 +0800
committerIzhar Firdaus <izhar@inigo-tech.com>2011-04-14 20:35:25 +0800
commitd794113338011dfc731fda87ea955d8aa1c9539d (patch)
treecc667bb723fc800f1e6717f1976cd59ad4d02bb8 /gnomeshell@pidgin.im
parentf87450cc47142b1a521d5eea627a55dcf8b8ac6f (diff)
downloadhack-patches-d794113338011dfc731fda87ea955d8aa1c9539d.tar.gz
hack-patches-d794113338011dfc731fda87ea955d8aa1c9539d.tar.xz
hack-patches-d794113338011dfc731fda87ea955d8aa1c9539d.zip
slightly nicer presence text
Diffstat (limited to 'gnomeshell@pidgin.im')
-rw-r--r--gnomeshell@pidgin.im/TODO.txt1
-rw-r--r--gnomeshell@pidgin.im/extension.js4
2 files changed, 2 insertions, 3 deletions
diff --git a/gnomeshell@pidgin.im/TODO.txt b/gnomeshell@pidgin.im/TODO.txt
index b2ccc21..1439110 100644
--- a/gnomeshell@pidgin.im/TODO.txt
+++ b/gnomeshell@pidgin.im/TODO.txt
@@ -1,4 +1,3 @@
Known bugs
===========
-* URL HREF not displaying correctly
diff --git a/gnomeshell@pidgin.im/extension.js b/gnomeshell@pidgin.im/extension.js
index a15e0ad..1add53b 100644
--- a/gnomeshell@pidgin.im/extension.js
+++ b/gnomeshell@pidgin.im/extension.js
@@ -203,7 +203,7 @@ Source.prototype = {
if (this._presence == old_status) return;
this._presence = new_status;
- this._notification.appendPresence(': <i>' + new_status + '</i>', false);
+ this._notification.appendPresence('<i>' + this.title + 'is now ' + new_status + '</i>', false);
},
@@ -211,7 +211,7 @@ Source.prototype = {
if (buddy != this._author_buddy) return;
this._presence = 'offline';
- this._notification.appendPresence(': <i>' + this.title + ' have signed off</i>', false);
+ this._notification.appendPresence('<i>' + this.title + ' have signed off</i>', false);
},
_onDeleteConversation: function(emitter, conversation) {