googleplus-reader 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/assets/javascripts/googleplus.photoreader.js.coffee +3 -0
- data/lib/googleplus/reader/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e99d4af8dd4b85f1416e80dcc56d757d199994a6
|
4
|
+
data.tar.gz: 95e380708a93ac49de00e0b22a4b867018350678
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 323445c5c5642c4f1d632cc82ad0c6210abf1e33c0c0bcb318681bc1002af2bd87b3e4c2be81574531dba7a0e887c85c10520b5c1ec8cd92a7207267673a36ad
|
7
|
+
data.tar.gz: 01ccdd84139ed1166c3dfc80c0217ffb70032900122dde331cabecd830ca788eb954be6362a2a74371384a60aa88b3e54305235d56f3507fd6377ab80c8699ff
|
data/CHANGELOG.md
CHANGED
@@ -28,11 +28,13 @@ define 'googleplus.photoreader', ['googleplus.reader', 'googleplus.photo'], (Rea
|
|
28
28
|
|
29
29
|
if attachment.fullImage?
|
30
30
|
collection.push new Photo
|
31
|
+
activity_id: item.id,
|
31
32
|
url: attachment.image.url,
|
32
33
|
width: attachment.fullImage.width,
|
33
34
|
date: date
|
34
35
|
else
|
35
36
|
collection.push new Photo
|
37
|
+
activity_id: item.id,
|
36
38
|
url: attachment.image.url,
|
37
39
|
width: null,
|
38
40
|
date: date
|
@@ -44,6 +46,7 @@ define 'googleplus.photoreader', ['googleplus.reader', 'googleplus.photo'], (Rea
|
|
44
46
|
continue unless thumbnail.image?
|
45
47
|
|
46
48
|
collection.push new Photo
|
49
|
+
activity_id: item.id,
|
47
50
|
url: thumbnail.image.url,
|
48
51
|
width: null,
|
49
52
|
date: date
|