]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Made it slighly more compact with less jQuery selection
authorSarven Capadisli <csarven@status.net>
Mon, 21 Sep 2009 11:35:56 +0000 (11:35 +0000)
committerSarven Capadisli <csarven@status.net>
Mon, 21 Sep 2009 11:35:56 +0000 (11:35 +0000)
plugins/Meteor/meteorupdater.js

index 82594d91c75b7ab401235d42b50d67e475788369..a7c87330c9bfc4ff69796984e74af8080f047e26 100644 (file)
@@ -8,15 +8,15 @@ var MeteorUpdater = function()
 
         init: function(server, port, timeline)
         {
-            var screen_name;
-
             Meteor.callbacks["process"] = function(data) {
                 var d = JSON.parse(data);
-                screen_name = d['user']['screen_name'];
+
+                $user_url = $('address .url')[0].href+d['user']['screen_name'];
 
                 if (timeline == 'public' ||
-                    $('address .url')[0].href+screen_name+'/all' == window.location.href ||
-                    $('address .url')[0].href+screen_name == window.location.href) {
+                    $user_url+'/all' == window.location.href ||
+                    $user_url == window.location.href) {
+
                     RealtimeUpdate.receive(d);
                 }
             };