Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanielgrippi <danielgrippi@gmail.com>2011-12-19 02:34:26 +0400
committerDennis Collinson <dennis.collective@gmail.com>2012-01-08 02:23:24 +0400
commit1b8f78e006d721cb0fb1f25d099583356df9b162 (patch)
tree2ba64a8a9fd7d662bd1544e1d7bd03d163189390 /lib/stream/base.rb
parent828624f392adfb7667646e23a0567b06a81c8e2f (diff)
remove sort order logic from controllers; backbone stream does not support it; was to be depricated anyway
Diffstat (limited to 'lib/stream/base.rb')
-rw-r--r--lib/stream/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stream/base.rb b/lib/stream/base.rb
index 9631521b8..6332915b2 100644
--- a/lib/stream/base.rb
+++ b/lib/stream/base.rb
@@ -86,7 +86,7 @@ class Stream::Base
true
end
- #NOTE: MBS bad bad methods the fact we need these means our views are foobared. please kill them and make them
+ #NOTE: MBS bad bad methods the fact we need these means our views are foobared. please kill them and make them
#private methods on the streams that need them
def aspects
user.aspects
@@ -98,7 +98,7 @@ class Stream::Base
end
def aspect_ids
- aspects.map{|x| x.id}
+ aspects.map{|x| x.id}
end
def max_time=(time_string)