onebox 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rspec +4 -0
- data/.travis.yml +4 -0
- data/README.md +154 -113
- data/lib/onebox.rb +6 -3
- data/lib/onebox/engine.rb +28 -26
- data/lib/onebox/engine/amazon_onebox.rb +4 -2
- data/lib/onebox/engine/bliptv_onebox.rb +4 -2
- data/lib/onebox/engine/clikthrough_onebox.rb +4 -2
- data/lib/onebox/engine/college_humor_onebox.rb +3 -2
- data/lib/onebox/engine/dailymotion_onebox.rb +4 -2
- data/lib/onebox/engine/dotsub_onebox.rb +4 -2
- data/lib/onebox/engine/example_onebox.rb +4 -5
- data/lib/onebox/engine/flickr_onebox.rb +3 -2
- data/lib/onebox/engine/funny_or_die_onebox.rb +4 -2
- data/lib/onebox/engine/github_blob_onebox.rb +28 -0
- data/lib/onebox/engine/github_commit_onebox.rb +43 -0
- data/lib/onebox/engine/github_gist_onebox.rb +33 -0
- data/lib/onebox/engine/github_pullrequest_onebox.rb +43 -0
- data/lib/onebox/engine/html.rb +1 -1
- data/lib/onebox/engine/hulu_onebox.rb +5 -2
- data/lib/onebox/engine/imgur_image_onebox.rb +26 -0
- data/lib/onebox/engine/itunes_onebox.rb +28 -0
- data/lib/onebox/engine/json.rb +11 -0
- data/lib/onebox/engine/kinomap_onebox.rb +27 -0
- data/lib/onebox/engine/nfb_onebox.rb +5 -2
- data/lib/onebox/engine/open_graph.rb +1 -1
- data/lib/onebox/engine/qik_onebox.rb +4 -2
- data/lib/onebox/engine/revision3_onebox.rb +3 -2
- data/lib/onebox/engine/slideshare_onebox.rb +4 -2
- data/lib/onebox/engine/sound_cloud_onebox.rb +4 -2
- data/lib/onebox/engine/spotify_onebox.rb +27 -0
- data/lib/onebox/engine/stack_exchange_onebox.rb +4 -2
- data/lib/onebox/engine/ted_onebox.rb +5 -2
- data/lib/onebox/engine/twitter_onebox.rb +31 -0
- data/lib/onebox/engine/viddler_onebox.rb +5 -3
- data/lib/onebox/engine/vimeo_onebox.rb +3 -2
- data/lib/onebox/engine/wikipedia_onebox.rb +4 -2
- data/lib/onebox/engine/yfrog_onebox.rb +5 -2
- data/lib/onebox/version.rb +1 -1
- data/lib/onebox/view.rb +21 -0
- data/onebox.gemspec +1 -1
- data/spec/fixtures/githubblob.response +922 -0
- data/spec/fixtures/githubcommit.response +87 -0
- data/spec/fixtures/githubgist.response +468 -0
- data/spec/fixtures/githubpullrequest.response +216 -0
- data/spec/fixtures/imguralbum.response +941 -0
- data/spec/fixtures/{imgur.response → imgurimage.response} +870 -890
- data/spec/fixtures/itunes.response +402 -0
- data/spec/fixtures/{rottentomatoes_fresh.response → rottentomatoesfresh.response} +0 -0
- data/spec/fixtures/{rottentomatoes_incomplete.response → rottentomatoesincomplete.response} +0 -0
- data/spec/fixtures/{rottentomatoes_rotten.response → rottentomatoesrotten.response} +0 -0
- data/spec/fixtures/spotify.response +250 -0
- data/spec/fixtures/{wikipedia_redirected.response → wikipediaredirected.response} +0 -0
- data/spec/lib/onebox/engine/{amazon_spec.rb → amazon_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{bliptv_spec.rb → bliptv_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{clikthrough_spec.rb → clikthrough_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{college_humor_spec.rb → college_humor_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{dailymotion_spec.rb → dailymotion_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{dotsub_spec.rb → dotsub_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/example_onebox_spec.rb +21 -0
- data/spec/lib/onebox/engine/{flickr_spec.rb → flickr_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{funny_or_die_spec.rb → funny_or_die_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/github_blob_onebox_spec.rb +30 -0
- data/spec/lib/onebox/engine/github_commit_onebox_spec.rb +61 -0
- data/spec/lib/onebox/engine/github_gist_onebox_spec.rb +29 -0
- data/spec/lib/onebox/engine/github_pullrequest_onebox_spec.rb +58 -0
- data/spec/lib/onebox/engine/html_spec.rb +27 -0
- data/spec/lib/onebox/engine/{hulu_spec.rb → hulu_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/imgur_image_onebox_spec.rb +29 -0
- data/spec/lib/onebox/engine/itunes_onebox_spec.rb +29 -0
- data/spec/lib/onebox/engine/json_spec.rb +27 -0
- data/spec/lib/onebox/engine/kinomap_onebox_spec.rb +37 -0
- data/spec/lib/onebox/engine/{nfb_spec.rb → nfb_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/open_graph_spec.rb +27 -0
- data/spec/lib/onebox/engine/{qik_spec.rb → qik_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{revision3_spec.rb → revision3_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{slideshare_spec.rb → slideshare_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{sound_cloud_spec.rb → sound_cloud_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/spotify_onebox_spec.rb +36 -0
- data/spec/lib/onebox/engine/{stack_exchange_spec.rb → stack_exchange_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{ted_spec.rb → ted_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/twitter_onebox_spec.rb +47 -0
- data/spec/lib/onebox/engine/{viddler_spec.rb → viddler_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{vimeo_spec.rb → vimeo_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{wikipedia_spec.rb → wikipedia_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine/{yfrog_spec.rb → yfrog_onebox_spec.rb} +7 -4
- data/spec/lib/onebox/engine_spec.rb +38 -27
- data/spec/lib/onebox/preview_spec.rb +3 -1
- data/spec/lib/onebox/view_spec.rb +16 -0
- data/spec/lib/onebox_spec.rb +1 -1
- data/spec/spec_helper.rb +8 -3
- data/spec/support/html_spec_helper.rb +1 -1
- data/templates/_layout.mustache +4 -0
- data/templates/amazon.mustache +5 -0
- data/templates/bliptv.mustache +5 -0
- data/templates/clikthrough.mustache +4 -0
- data/templates/collegehumor.mustache +5 -0
- data/templates/dailymotion.mustache +5 -0
- data/templates/dotsub.mustache +5 -0
- data/templates/example.mustache +2 -0
- data/templates/flickr.mustache +4 -0
- data/templates/funnyordie.mustache +6 -0
- data/templates/githubblob.mustache +5 -0
- data/templates/githubcommit.mustache +11 -0
- data/templates/githubgist.mustache +3 -0
- data/templates/githubpullrequest.mustache +14 -0
- data/templates/hulu.mustache +6 -0
- data/templates/imgurimage.mustache +3 -0
- data/templates/itunes.mustache +4 -0
- data/templates/kinomap.mustache +5 -0
- data/templates/nfb.mustache +5 -0
- data/templates/qik.mustache +4 -0
- data/templates/revision3.mustache +5 -0
- data/templates/slideshare.mustache +4 -0
- data/templates/soundcloud.mustache +5 -0
- data/templates/spotify.mustache +4 -0
- data/templates/stackexchange.mustache +3 -0
- data/templates/ted.mustache +5 -0
- data/templates/twitter.mustache +7 -0
- data/templates/viddler.mustache +5 -0
- data/templates/vimeo.mustache +5 -0
- data/templates/wikipedia.mustache +4 -0
- data/templates/yfrog.mustache +4 -0
- metadata +139 -90
- data/spec/fixtures/apple.response +0 -391
- data/spec/fixtures/clickthrough.response +0 -1472
- data/spec/fixtures/gist.response +0 -282
- data/spec/fixtures/github_blob.response +0 -706
- data/spec/fixtures/github_commit.response +0 -881
- data/spec/fixtures/github_pullrequest.response +0 -1619
- data/spec/lib/onebox/engine/example_spec.rb +0 -18
- data/templates/amazon.handlebars +0 -9
- data/templates/bliptv.handlebars +0 -10
- data/templates/clickthrough.handlebars +0 -8
- data/templates/clikthrough.handlebars +0 -8
- data/templates/collegehumor.handlebars +0 -9
- data/templates/dailymotion.handlebars +0 -9
- data/templates/dotsub.handlebars +0 -9
- data/templates/flickr.handlebars +0 -8
- data/templates/funnyordie.handlebars +0 -9
- data/templates/hulu.handlebars +0 -9
- data/templates/nfb.handlebars +0 -8
- data/templates/qik.handlebars +0 -7
- data/templates/revision3.handlebars +0 -9
- data/templates/slideshare.handlebars +0 -8
- data/templates/soundcloud.handlebars +0 -9
- data/templates/stackexchange.handlebars +0 -7
- data/templates/ted.handlebars +0 -8
- data/templates/viddler.handlebars +0 -9
- data/templates/vimeo.handlebars +0 -9
- data/templates/wikipedia.handlebars +0 -8
- data/templates/yfrog.handlebars +0 -8
@@ -1,892 +1,872 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
<meta
|
8
|
-
<meta name="
|
9
|
-
<meta name="
|
10
|
-
<meta
|
11
|
-
<
|
12
|
-
|
13
|
-
|
14
|
-
<link rel="stylesheet" href="http://s.imgur.com/min/
|
15
|
-
|
16
|
-
<
|
17
|
-
<meta name="twitter:
|
18
|
-
<meta name="twitter:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
gads
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
<
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
<div>
|
78
|
-
<
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
<input type="
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
<
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
<div id="upload-global-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
<
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
<
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
<
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
<
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
<div id="upload-global-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
<
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
<
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
<input
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
</
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
</div>
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
<div
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
</div>
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
<div class="
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
<div class="
|
407
|
-
<div class="
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
<div
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
<div
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
</div>
|
525
|
-
|
526
|
-
<div class="
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
<div class="
|
619
|
-
<div></div>
|
620
|
-
</div>
|
621
|
-
|
622
|
-
<div class="
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
<div
|
641
|
-
</div>
|
642
|
-
|
643
|
-
<div class="">
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
</script>
|
675
|
-
</div>
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
</div>
|
680
|
-
|
681
|
-
<div class="ad-text">
|
682
|
-
Advertisement: <a href="/register/upgrade">pro users don't see ads</a>
|
683
|
-
</div>
|
684
|
-
</div>
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
</div>
|
689
|
-
|
690
|
-
<div class="clear"></div>
|
691
|
-
</div>
|
692
|
-
|
693
|
-
<input id="sid" type="hidden" value="2dc94994c2573c96c140e2d27be447fc" />
|
694
|
-
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<title> My dog likes to hug me. He also likes to get a running start first. - Imgur
|
6
|
+
</title>
|
7
|
+
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
|
8
|
+
<meta name="robots" content="follow,index" />
|
9
|
+
<meta name="keywords" content="images, funny pictures, image host, image upload, image sharing, image resize" />
|
10
|
+
<meta name="description" content="Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing." />
|
11
|
+
<meta http-equiv="X-UA-Compatible" content="IE=Edge;" />
|
12
|
+
|
13
|
+
<link rel="alternate" type="application/rss+xml" title="Imgur Gallery" href="http://feeds.feedburner.com/ImgurGallery?format=xml" />
|
14
|
+
<link rel="stylesheet" type="text/css" href="http://s.imgur.com/min/global.css?1379624102" />
|
15
|
+
<meta name="medium" content="image"/>
|
16
|
+
<link rel="stylesheet" href="http://s.imgur.com/min/gallery.css?1379709744"/>
|
17
|
+
<meta name="twitter:card" value="photo"/>
|
18
|
+
<meta name="twitter:site" value="@imgur"/>
|
19
|
+
<meta name="twitter:url" value="http://imgur.com/gallery/twoDTCU"/>
|
20
|
+
<meta name="twitter:title" value="My dog likes to hug me. He also likes to get a running start first."/>
|
21
|
+
<link rel="image_src" href="http://i.imgur.com/twoDTCU.jpg"/>
|
22
|
+
<meta name="twitter:image" value="http://i.imgur.com/twoDTCU.jpg"/>
|
23
|
+
<meta name="twitter:image:width" value="2400"/>
|
24
|
+
<meta name="twitter:image:height" value="1800"/>
|
25
|
+
|
26
|
+
<!--[if IE 9]><link rel="stylesheet" href="http://s.imgur.com/include/css/ie-sucks.css?0" type="text/css" /><![endif]-->
|
27
|
+
|
28
|
+
|
29
|
+
<script type='text/javascript'>
|
30
|
+
var googletag = googletag || { };
|
31
|
+
googletag.cmd = googletag.cmd || [];
|
32
|
+
(function() {
|
33
|
+
var gads = document.createElement('script');
|
34
|
+
gads.async = true;
|
35
|
+
gads.type = 'text/javascript';
|
36
|
+
var useSSL = 'https:' == document.location.protocol;
|
37
|
+
gads.src = (useSSL ? 'https:' : 'http:') +
|
38
|
+
'//www.googletagservices.com/tag/js/gpt.js';
|
39
|
+
var node = document.getElementsByTagName('script')[0];
|
40
|
+
node.parentNode.insertBefore(gads, node);
|
41
|
+
})();
|
42
|
+
</script>
|
43
|
+
|
44
|
+
<script type='text/javascript'>
|
45
|
+
var dfp_adslot = undefined;
|
46
|
+
|
47
|
+
googletag.cmd.push(function() {
|
48
|
+
dfp_adslot = googletag.defineSlot('/4761660/H_I_300x250', [300, 250], 'div-gpt-ad-1345436847476-0').addService(googletag.pubads());
|
49
|
+
googletag.pubads().enableSingleRequest();
|
50
|
+
googletag.enableServices();
|
51
|
+
});
|
52
|
+
</script>
|
53
|
+
</head>
|
54
|
+
<body>
|
55
|
+
<div id="topbar" >
|
56
|
+
<div class="header-center">
|
57
|
+
<div id="header-logo">
|
58
|
+
<a href="//imgur.com"></a>
|
59
|
+
</div>
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
<div id="main-nav">
|
64
|
+
<ul>
|
65
|
+
|
66
|
+
<li class="random-button title-n " title="random mode"><span class="button-outline"><a href="http://imgur.com/random"><span class="random-icon"></span></a></span></li>
|
67
|
+
<li class="upload-button disabled title-n" title="upload images"><div id="upload-global-top-bar-mini-progress"></div><span class="button-outline"><a href="javascript:void(0);"><span class="upload-icon"></span><span class="upload-queue-length">23</span></a></span></li>
|
68
|
+
</ul>
|
69
|
+
</div>
|
70
|
+
|
71
|
+
<div id="secondary-nav">
|
72
|
+
<ul class="user-nav">
|
73
|
+
<li class="signin-link"><a class="" href="https://imgur.com/signin"><span class="dot"></span>sign in</a>
|
74
|
+
<div class="signin-dropdown">
|
75
|
+
<form method="post" action="https://imgur.com/signin" id="dropdown-signin-form">
|
76
|
+
<span class='tiptext'>Use an Imgur account</span>
|
77
|
+
<div>
|
78
|
+
<input type="text" tabindex="11" name="username" maxlength="255" id="dd-username" title="username or email address" class="placeholder-onkeydown required" value="">
|
79
|
+
</div>
|
80
|
+
|
81
|
+
<div>
|
82
|
+
<div class="recover">
|
83
|
+
<a class="forgot" href="http://imgur.com/signin/forgotpassword">
|
84
|
+
forgot?
|
85
|
+
</a>
|
86
|
+
</div>
|
87
|
+
<div class="clear"></div>
|
88
|
+
<input type="password" tabindex="12" name="password" title="password" maxlength="255" id="dd-password" placeholder="password" class="placeholder required" value="">
|
89
|
+
</div>
|
90
|
+
|
91
|
+
<div class="remember-box">
|
92
|
+
<input type="checkbox" tabindex="13" name="remember" id="dd-remember" value="remember" checked="checked">
|
93
|
+
<label for="dd-remember"> Stay signed in on this computer</label>
|
94
|
+
</div>
|
95
|
+
|
96
|
+
<div class="signin-button">
|
97
|
+
<input type="submit" class="button-medium" name="submit_form" value="Sign in" id="dd-submit" tabindex="14">
|
98
|
+
<label class="imgur signin-icon" for="dd-submit"></label>
|
99
|
+
</div>
|
100
|
+
</form>
|
101
|
+
|
102
|
+
<div class="other-accounts">
|
103
|
+
<span class='tiptext'>Use another account</span>
|
104
|
+
|
105
|
+
<ul>
|
106
|
+
<li>
|
107
|
+
<a href="https://imgur.com/signin/google">
|
108
|
+
Google
|
109
|
+
<span class="signin-icon google"></span>
|
110
|
+
</a>
|
111
|
+
</li>
|
112
|
+
<li><a href="https://imgur.com/signin/facebook">
|
113
|
+
Facebook
|
114
|
+
<span class="signin-icon facebook"></span>
|
115
|
+
</a>
|
116
|
+
</li>
|
117
|
+
<li>
|
118
|
+
<a href="https://imgur.com/signin/twitter">
|
119
|
+
Twitter
|
120
|
+
<span class="signin-icon twitter"></span>
|
121
|
+
</a>
|
122
|
+
</li>
|
123
|
+
<li>
|
124
|
+
<a href="https://imgur.com/signin/yahoo">
|
125
|
+
Yahoo
|
126
|
+
<span class="signin-icon yahoo"></span>
|
127
|
+
</a>
|
128
|
+
</li>
|
129
|
+
</ul>
|
130
|
+
</div>
|
131
|
+
</div>
|
132
|
+
</li>
|
133
|
+
<li><a href="https://imgur.com/register">register</a></li>
|
134
|
+
</ul>
|
135
|
+
|
136
|
+
</div>
|
137
|
+
|
138
|
+
</div>
|
139
|
+
|
140
|
+
</div>
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
<a href="javascript:;" id="upload-global-album-tipsy" class="title-nw nodisplay" title="You can't create an album with just one image"></a>
|
149
|
+
|
150
|
+
<div id="upload-global" class="popup">
|
151
|
+
<form method="post" id="upload-global-form" enctype="multipart/form-data" action="http://imgur.com/upload">
|
152
|
+
<h1>
|
153
|
+
<span id="upload-global-title">Upload images</span>
|
154
|
+
|
155
|
+
</h1>
|
156
|
+
|
157
|
+
<div id="upload-global-buttons">
|
158
|
+
<div id="upload-global-upload-loader" class="textbox">
|
159
|
+
Loading...
|
160
|
+
</div>
|
161
|
+
|
162
|
+
<div id="upload-global-file-wrapper">
|
163
|
+
<span class="computerIcon"></span>
|
164
|
+
<span class="green">browse</span> your computer
|
165
|
+
|
166
|
+
<input type="file" name="Filedata" multiple="multiple" id="upload-global-file">
|
167
|
+
</div>
|
168
|
+
|
169
|
+
<div class="left">
|
170
|
+
<div id="upload-global-url">
|
171
|
+
<span class="webIcon"></span>
|
172
|
+
<textarea id="upload-global-link-input" class="placeholder-onkeydown" title="enter URLs to upload from web" placeholder="enter URLs to upload from web" rows="1"></textarea>
|
173
|
+
</div>
|
174
|
+
</div>
|
175
|
+
|
176
|
+
<div class="clear"></div>
|
177
|
+
|
178
|
+
<div id="upload-global-dragdrop">
|
179
|
+
<span class="dragdropIcon"></span>
|
180
|
+
<span class="green">drag and drop</span> here
|
181
|
+
</div>
|
182
|
+
|
183
|
+
<div class="left">
|
184
|
+
<div id="upload-global-clipboard">
|
185
|
+
<div style="text-align: center"><span class="clipboardIcons">Ctrl + V</span></div>
|
186
|
+
<span class="green">paste</span> from your clipboard
|
187
|
+
</div>
|
188
|
+
</div>
|
189
|
+
|
190
|
+
<div class="clear"></div>
|
191
|
+
</div>
|
192
|
+
|
193
|
+
<div class="textbox center" id="upload-global-instructions"></div>
|
194
|
+
|
195
|
+
<!-- gallery submit vars -->
|
196
|
+
<input type="hidden" name="current_upload" value="0"/>
|
197
|
+
<input type="hidden" name="total_uploads" value="0"/>
|
198
|
+
<input type="hidden" name="terms" value="0"/>
|
199
|
+
<input type="hidden" name="gallery_type" value=""/>
|
200
|
+
|
201
|
+
|
202
|
+
<div id="upload-global-errors" class="textbox error" style="display: none;"></div>
|
203
|
+
|
204
|
+
<div id="upload-global-queue-description" class="textbox nodisplay"></div>
|
205
|
+
|
206
|
+
<div id="upload-global-start-upload">
|
207
|
+
<div class="panel">
|
208
|
+
<div>
|
209
|
+
|
210
|
+
<table id="upload-global-actions">
|
211
|
+
<tbody>
|
212
|
+
<tr>
|
213
|
+
|
214
|
+
<td width="50.1%">
|
215
|
+
|
216
|
+
<div id="upload-global-album-checkbox-div">
|
217
|
+
<input type="hidden" name="gallery_submit" value="0"/>
|
218
|
+
|
219
|
+
<button id="upload-global-gallery-checkbox" type="button">
|
220
|
+
<span class="gallery-icon"></span>add to gallery
|
221
|
+
</button>
|
222
|
+
|
223
|
+
<div id="upload-global-gallery-checkbox-overlay"></div>
|
224
|
+
|
225
|
+
<input type="hidden" name="create_album" value="0"/>
|
226
|
+
|
227
|
+
<button id="upload-global-album-checkbox" type="button">
|
228
|
+
<span class="createAlbum-icon"></span>create album
|
229
|
+
</button>
|
230
|
+
|
231
|
+
</div>
|
232
|
+
|
233
|
+
</td>
|
234
|
+
<td width="49.9%">
|
235
|
+
<button type="button" id="upload-global-start-button" class="button-big green" type="submit">
|
236
|
+
<span class="start-btn-icon"></span>
|
237
|
+
Start Upload
|
238
|
+
</button>
|
239
|
+
</td>
|
240
|
+
</tr>
|
241
|
+
</tbody>
|
242
|
+
</table>
|
243
|
+
|
244
|
+
</div>
|
245
|
+
|
246
|
+
<div id="upload-global-album-options">
|
247
|
+
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
<table id="upload-global-album-layout">
|
258
|
+
<tr>
|
259
|
+
<td id="upload-global-album-td">
|
260
|
+
<input name="album_title" type="text" title="Optional Album Title" class="placeholder-onkeydown" id="upload-global-album-title" maxlength="55" />
|
261
|
+
</td>
|
262
|
+
|
263
|
+
<td class="center title" title="<table><tr><td style='vertical-align: middle'><img src='http://s.imgur.com/images/album-layout-blog.png' style='padding-right: 2px;'/></td><td><h1>Blog Layout</h1>Shows all the images on one page in a blog post style layout. Best for albums with a small to medium amount of images.</td></tr></table>">
|
264
|
+
<input id="blog" type="radio" name="layout" value="b" checked="checked"/>
|
265
|
+
<label for="blog">Blog</label>
|
266
|
+
</td>
|
267
|
+
|
268
|
+
<td class="center title" title="<table><tr><td style='vertical-align: middle'><img src='http://s.imgur.com/images/album-layout-vertical.png' style='padding-right: 6px;'/></td><td><h1>Vertical Layout</h1>Shows one image at a time in a traditional style, with thumbnails to the right. Good for almost any album.</td></tr></table>">
|
269
|
+
<input id="vertical" type="radio" name="layout" value="v"/>
|
270
|
+
<label for="vertical">Vertical</label>
|
271
|
+
</td>
|
272
|
+
|
273
|
+
<td class="center title" title="<table><tr><td style='vertical-align: middle'><img src='http://s.imgur.com/images/album-layout-horizontal.png' style='padding-right: 6px;'/></td><td><h1>Horizontal Layout</h1>Shows one image at a time in a traditional style, with thumbnails on top. Best for albums that have high resolution photos.</td></tr></table>">
|
274
|
+
<input id="horizontal" type="radio" name="layout" value="h"/>
|
275
|
+
<label for="horizontal">Horizontal</label>
|
276
|
+
</td>
|
277
|
+
|
278
|
+
<td class="center title" title="<table><tr><td style='vertical-align: middle'><img src='http://s.imgur.com/images/album-layout-grid.png' style='padding-right: 6px;'/></td><td><h1>Grid Layout</h1>Shows all the images on one page as thumbnails that expand when clicked on. Best for albums with lots of images.</td></tr></table>">
|
279
|
+
<input id="grid" type="radio" name="layout" value="g"/>
|
280
|
+
<label for="grid">Grid</label>
|
281
|
+
</td>
|
282
|
+
|
283
|
+
<td width="15"></td>
|
284
|
+
</tr>
|
285
|
+
</table>
|
286
|
+
|
287
|
+
</div>
|
288
|
+
<div id="upload-global-image-options">
|
289
|
+
<table id="upload-global-submission-title">
|
290
|
+
<tr>
|
291
|
+
<td>
|
292
|
+
<input name="gallery_title" type="text" class="placeholder-onkeydown" title="Gallery submission title (required)" id="upload-global-gallery-submission-title" maxlength="255" />
|
293
|
+
</td>
|
294
|
+
</tr>
|
295
|
+
</table>
|
296
|
+
</div>
|
297
|
+
|
298
|
+
<div class="textbox list">
|
299
|
+
<table id="upload-global-file-list-header">
|
300
|
+
<tr class="top-tr">
|
301
|
+
<td width="40"></td>
|
302
|
+
<td><h2>Images <span class="upload-queue-length">(0)</span></h2></td>
|
303
|
+
<td width="45" class="edit-td"><h2>Edit</h2></td>
|
304
|
+
</tr>
|
305
|
+
</table>
|
306
|
+
|
307
|
+
<table id="upload-global-file-list">
|
308
|
+
</table>
|
309
|
+
<div class="agreement-notice">By uploading, you agree to our <a href="//imgur.com/tos" target="_blank">terms of service</a></div>
|
310
|
+
|
311
|
+
</div>
|
312
|
+
</div>
|
313
|
+
</div>
|
314
|
+
|
315
|
+
<div id="upload-global-progress-wrapper">
|
316
|
+
<div id="upload-global-progressbar">
|
317
|
+
<div class="progressBarBG">
|
318
|
+
<div class="progressBar"></div>
|
319
|
+
</div>
|
320
|
+
</div>
|
321
|
+
<div id="upload-global-upload-queue"></div>
|
322
|
+
</div>
|
323
|
+
</form>
|
324
|
+
</div>
|
325
|
+
|
326
|
+
<div id="upload-global-FF-paste-box"></div>
|
327
|
+
|
328
|
+
<div id="hiddenDropZone" class="nodisplay"></div>
|
329
|
+
|
330
|
+
<div class="nodisplay">
|
331
|
+
<div id="upload-global-image-formats">
|
332
|
+
That file type is not supported!
|
333
|
+
|
334
|
+
<div class="textbox supported-formats">
|
335
|
+
Supported formats: JPEG, GIF, PNG, APNG, TIFF, BMP, PDF, XCF
|
336
|
+
</div>
|
337
|
+
</div>
|
338
|
+
</div>
|
339
|
+
|
340
|
+
<div id="upload-global-flash-container" title="upload images from your computer">
|
341
|
+
<div id="upload-global-flash-browse"></div>
|
342
|
+
</div>
|
343
|
+
|
344
|
+
|
345
|
+
|
346
|
+
<div class="nodisplay">
|
347
|
+
Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing.
|
348
|
+
</div>
|
349
|
+
|
350
|
+
|
351
|
+
|
352
|
+
|
353
|
+
<div id="content" class="two-column">
|
354
|
+
<div class="left main-image">
|
355
|
+
<div class="panel">
|
356
|
+
<h2 id='image-title'>My dog likes to hug me. He also likes to get a running start first.</h2>
|
357
|
+
|
358
|
+
|
359
|
+
|
360
|
+
<div id="image" class="zoom">
|
361
|
+
<div class="image textbox ">
|
362
|
+
|
363
|
+
|
364
|
+
<a href="http://i.imgur.com/twoDTCU.jpg">
|
365
|
+
<img src="http://i.imgur.com/twoDTCU.jpg" alt="" />
|
366
|
+
</a>
|
367
|
+
</div>
|
368
|
+
|
369
|
+
|
370
|
+
|
371
|
+
|
372
|
+
|
373
|
+
</div>
|
374
|
+
|
375
|
+
<div id="under-image">
|
376
|
+
|
377
|
+
|
378
|
+
<div>
|
379
|
+
<div class="textbox image-arrows nospace"><span id="mainUpArrow" class="arrow up title" data="twoDTCU" type="image" title="Like"></span><span id="mainDownArrow" class="arrow down title" data="twoDTCU" type="image" title="Dislike"></span></div>
|
380
|
+
|
381
|
+
<div class="favorite-icon inline" >
|
382
|
+
<div id="favorite-image" title="Favorite" class="title " href="javascript:;"></div>
|
383
|
+
</div>
|
384
|
+
|
385
|
+
<div class="info textbox">
|
386
|
+
<div class="left">
|
387
|
+
<span class="points-twoDTCU">1,540</span>
|
388
|
+
<span class="points-text-twoDTCU">points</span>
|
389
|
+
|
390
|
+
</div>
|
391
|
+
|
392
|
+
|
393
|
+
|
394
|
+
<div class="sparkbar">
|
395
|
+
|
396
|
+
<div class="title positive " title="1556 likes" style="width: 98.982188295165%"></div>
|
397
|
+
<div class="title negative " title="16 dislikes" style="width: 1.0178117048346%"></div>
|
398
|
+
</div>
|
399
|
+
|
400
|
+
|
401
|
+
|
402
|
+
</div>
|
403
|
+
|
404
|
+
|
405
|
+
|
406
|
+
<div class="report-icon inline" >
|
407
|
+
<div id="report-image" title="Report Image" class="title " href="javascript:;"></div>
|
408
|
+
<div id="delete-image" title="Remove this image from the gallery" class="title nodisplay" href="javascript:;"></div>
|
409
|
+
</div>
|
410
|
+
|
411
|
+
<div id="social" class="social">
|
412
|
+
<ul>
|
413
|
+
<li class="title" title="Share on Twitter">
|
414
|
+
<span class="twitter_custom"></span>
|
415
|
+
</li>
|
416
|
+
<li class="title" title="Share on Facebook">
|
417
|
+
<span class="facebook_custom"></span>
|
418
|
+
</li>
|
419
|
+
<li class="title" title="Share on Reddit">
|
420
|
+
<span class="reddit_custom"></span>
|
421
|
+
</li>
|
422
|
+
<li class="title" title="Share on Tumblr">
|
423
|
+
<span class="tumblr_custom"></span>
|
424
|
+
</li>
|
425
|
+
<li class="title" title="Share on Stumble Upon">
|
426
|
+
<span class="stumbleupon_custom"></span>
|
427
|
+
</li>
|
428
|
+
<li class="title email-button-hide" title="Share over email">
|
429
|
+
<a href="javascript:;" class="addthis_button_email"><span class="st_email_custom"></span></a>
|
430
|
+
</li>
|
431
|
+
<li class="title" title="More sharing options">
|
432
|
+
<span class="addthis_button st_sharethis_custom"><span></span></span>
|
433
|
+
</li>
|
434
|
+
</ul>
|
435
|
+
</div>
|
436
|
+
|
437
|
+
|
438
|
+
<div class="clear"></div>
|
439
|
+
</div>
|
440
|
+
|
441
|
+
<div id="sponsored-image-caption">
|
442
|
+
|
443
|
+
</div>
|
444
|
+
|
445
|
+
<div id="submit-caption">
|
446
|
+
<textarea name="5356d2e58e23b5a4c11dfae7791a91ef" id="caption_textarea">Submit a comment</textarea>
|
447
|
+
<input type="button" name="save" class="submit submit-caption-button button-medium right" value="save" />
|
448
|
+
|
449
|
+
<span class="counter left"></span>
|
450
|
+
<div id="save-caption-loader"></div>
|
451
|
+
<div class="clear"></div>
|
452
|
+
</div>
|
453
|
+
|
454
|
+
<div id="caption-error" class="error textbox"></div>
|
455
|
+
<div class="clear"></div>
|
456
|
+
|
457
|
+
<div class="small textbox comments-info">
|
458
|
+
<div class="left">
|
459
|
+
<div class="inline"><span id="comment-count">- comments</span> sorted by </div>
|
460
|
+
|
461
|
+
<div id="comment-sort" class="left combobox inline" title="sort comments by" name="comment-sort">
|
462
|
+
<div class="selection green"></div>
|
463
|
+
<div class="triangle"></div>
|
464
|
+
<div class="options">
|
465
|
+
<div class="item center selected" value="best">best</div>
|
466
|
+
<div class="item center " value="new">new</div>
|
467
|
+
<div class="item center " value="top">top</div>
|
468
|
+
</div>
|
469
|
+
</div>
|
470
|
+
</div>
|
471
|
+
<div class="right small">
|
472
|
+
<a href="javascript:;" data="collapsed" id="expand-comments">expand all</a>
|
473
|
+
|
474
|
+
</div>
|
475
|
+
<div class="clear"></div>
|
476
|
+
</div>
|
477
|
+
|
478
|
+
<div id="captions">
|
479
|
+
<noscript>
|
480
|
+
<div class="textbox small-margin-top line-height-normal">
|
481
|
+
Javascript is required to view comments normally. Please either enable javascript or click <a href="?no-script=true">here</a> to view comments without javascript.
|
482
|
+
</div>
|
483
|
+
</noscript>
|
484
|
+
|
485
|
+
</div>
|
486
|
+
</div>
|
487
|
+
</div>
|
488
|
+
|
489
|
+
<div id="footer">
|
490
|
+
<div id="copyright">© 2013 Imgur, LLC.</div>
|
491
|
+
|
492
|
+
|
493
|
+
<div id="footer-links">
|
494
|
+
<a href="http://store.imgur.com" class="title green" title="the official imgur store">store</a>
|
495
|
+
<a href="http://imgur.com/blog" class="title" title="the simple imgur blog">blog</a>
|
496
|
+
<a href="http://imgur.com/help" class="title" title="answers to your questions">help</a>
|
497
|
+
<a href="http://imgur.com/apps" class="title" title="uploading apps">apps</a>
|
498
|
+
<a href="http://imgur.com/removalrequest" class="title" title="submit an image removal request">request deletion</a>
|
499
|
+
<a href="http://imgur.com/tos" class="title" title="terms of service">terms</a>
|
500
|
+
<a href="http://imgur.com/register/upgrade" class="title" title="imgur pro">go pro</a>
|
501
|
+
|
502
|
+
<a href="http://api.imgur.com" class="title" title="the imgur API">api</a>
|
503
|
+
</div>
|
504
|
+
|
505
|
+
<div class="clear"></div>
|
506
|
+
|
507
|
+
</div>
|
508
|
+
</div>
|
509
|
+
|
510
|
+
<div id="right-content" class="right">
|
511
|
+
<div class="panel navigation-thumbs">
|
512
|
+
<div class="next-prev">
|
513
|
+
|
514
|
+
|
515
|
+
<div class="left">
|
516
|
+
<a id="navPrev" href="/gallery/8XX0z">
|
517
|
+
<input type="button" class="button-medium" id="navPrev" value="« prev"/>
|
518
|
+
</a>
|
519
|
+
|
520
|
+
<a id="navNext" href="/gallery/qc2vTYc">
|
521
|
+
<input type="button" class="button-medium" value="next »"/>
|
522
|
+
</a>
|
523
|
+
|
524
|
+
</div>
|
525
|
+
|
526
|
+
<div class="right">
|
527
|
+
<a href="/hot/viral/" class="browse" >
|
528
|
+
<input type="button" class="button-medium" value="browse" onclick="javascript:window.location='/hot/viral/';" />
|
529
|
+
</a>
|
530
|
+
|
531
|
+
</div>
|
532
|
+
|
533
|
+
<div class="clear"></div>
|
534
|
+
</div>
|
535
|
+
|
536
|
+
<div class='thumbs-carousel'>
|
537
|
+
<div class="carousel-button prev">
|
538
|
+
<div></div>
|
539
|
+
</div>
|
540
|
+
|
541
|
+
<div class="left">
|
542
|
+
<div id="thumbs-top" class="jcarousel">
|
543
|
+
<ul>
|
544
|
+
|
545
|
+
<li><a href="/gallery/qc2vTYc">
|
546
|
+
<img class='thumb-title' hash='qc2vTYc' src="http://i.imgur.com/qc2vTYcb.jpg" title="Don&#039;t ruin the sanctity of marriage!<p>2,262 points : 70,454 views</p>" />
|
547
|
+
</a></li>
|
548
|
+
|
549
|
+
|
550
|
+
<li><a href="/gallery/t8SYt6t">
|
551
|
+
<img class='thumb-title' hash='t8SYt6t' src="http://i.imgur.com/t8SYt6tb.jpg" title="I don&#039;t know if this is more creepy or hilarious.<p>609 points : 205,580 views</p>" />
|
552
|
+
</a></li>
|
553
|
+
|
554
|
+
|
555
|
+
<li><a href="/gallery/628BxQa">
|
556
|
+
<img class='thumb-title' hash='628BxQa' src="http://i.imgur.com/628BxQab.jpg" title="Catsitting this monstrosity<p>860 points : 184,864 views</p>" />
|
557
|
+
</a></li>
|
558
|
+
|
559
|
+
|
560
|
+
|
561
|
+
|
562
|
+
|
563
|
+
|
564
|
+
|
565
|
+
|
566
|
+
|
567
|
+
</ul>
|
568
|
+
</div>
|
569
|
+
<div id="thumbs-bottom" class="jcarousel">
|
570
|
+
<ul>
|
571
|
+
|
572
|
+
|
573
|
+
|
574
|
+
|
575
|
+
|
576
|
+
|
577
|
+
|
578
|
+
<li><a href="/gallery/G3uDdnF">
|
579
|
+
<img class='thumb-title' hash='G3uDdnF' src="http://i.imgur.com/G3uDdnFb.jpg" title="I was looking up references of broken glass, and I accidently scared the shit out of my boss.<p>1,425 points : 504,615 views</p>" />
|
580
|
+
</a></li>
|
581
|
+
|
582
|
+
|
583
|
+
<li><a href="/gallery/wdaekjY">
|
584
|
+
<img class='thumb-title' hash='wdaekjY' src="http://i.imgur.com/wdaekjYb.jpg" title="Neil deGrasse Tyson gave a talk at my university yesterday. This is how the newspaper reported it today.<p>2,627 points : 1,263,306 views</p>" />
|
585
|
+
</a></li>
|
586
|
+
|
587
|
+
|
588
|
+
<li><a href="/gallery/SaiAoWY">
|
589
|
+
<img class='thumb-title' hash='SaiAoWY' src="http://i.imgur.com/SaiAoWYb.jpg" title="8 Papa John&#039;s Suddenly Close on Payday, leaving myself and 50+ other employees without pay for our last 2 weeks. The same owners have another franchise open and run by Papa John&#039;s.<p>356 points : 236,330 views</p>" />
|
590
|
+
</a></li>
|
591
|
+
|
592
|
+
|
593
|
+
|
594
|
+
</ul>
|
595
|
+
</div>
|
596
|
+
</div>
|
597
|
+
<div class="carousel-button next">
|
598
|
+
<div></div>
|
599
|
+
</div>
|
600
|
+
|
601
|
+
<div class="clear"></div>
|
602
|
+
</div>
|
603
|
+
</div>
|
604
|
+
|
605
|
+
|
606
|
+
|
607
|
+
<div id="statsbox" class="panel" style="display:block">
|
608
|
+
<div class="stats textbox">
|
609
|
+
<div id="stats-submit-date" style="float:left" title="Friday, September 20, 2013 at 18:58:00 GMT">
|
610
|
+
Submitted
|
611
|
+
5 hours ago
|
612
|
+
</div>
|
613
|
+
|
614
|
+
<div id="stats-submit-source-reddit" class="right small"><a href="http://www.reddit.com/r/aww/comments/1msljq/my_dog_likes_to_hug_me_he_also_likes_to_get_a/">(source)</a></div>
|
615
|
+
|
616
|
+
<div class="clear"></div>
|
617
|
+
|
618
|
+
<div class="by">
|
619
|
+
<div id="stats-submit-source"></div>
|
620
|
+
</div>
|
621
|
+
|
622
|
+
<div class="">
|
623
|
+
<span id="stats-views" class="stat">593,820</span> views
|
624
|
+
<span id="bandwidth-div" > · <span id="stats-bandwidth" class="stat">374.08 GB</span> bandwidth</span>
|
625
|
+
</div>
|
626
|
+
|
627
|
+
<div id="original-source" class="nodisplay">
|
628
|
+
<span class="title" title="This images original location on the web">from:</span> <span class="domain"><a href=""></a></span>
|
629
|
+
</div>
|
630
|
+
|
631
|
+
<div class="small margin-top">
|
632
|
+
<div class="left .embed-codes">
|
633
|
+
<a target="_blank" id="stats-embed-codes" href="/twoDTCU?tags">Get embed codes</a>
|
634
|
+
|
635
|
+
</div>
|
636
|
+
<div class="right">
|
637
|
+
<a href="/download/twoDTCU/My+dog+likes+to+hug+me.+He+also+likes+to+get+a+running+start+first." id='stats-download'>Download</a>
|
638
|
+
<img id="download-loader" class="nodisplay" src="http://s.imgur.com/images/index-loader.gif">
|
639
|
+
</div>
|
640
|
+
<div class="clear"></div>
|
641
|
+
</div>
|
642
|
+
|
643
|
+
<div class="clear"></div>
|
644
|
+
|
645
|
+
</div>
|
646
|
+
</div>
|
647
|
+
|
648
|
+
<div class="advertisement">
|
649
|
+
<div class="panel-ad">
|
650
|
+
<div id='div-gpt-ad-1345436847476-0' style='width:300px; height:250px;'>
|
651
|
+
<script type='text/javascript'>
|
652
|
+
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1345436847476-0'); });
|
653
|
+
</script>
|
654
|
+
</div>
|
655
|
+
|
656
|
+
|
657
|
+
|
658
|
+
</div>
|
659
|
+
|
660
|
+
<div class="ad-text">
|
661
|
+
Advertisement: <a href="/register/upgrade">pro users don't see ads</a>
|
662
|
+
</div>
|
663
|
+
</div>
|
664
|
+
|
665
|
+
|
666
|
+
|
667
|
+
</div>
|
668
|
+
|
669
|
+
<div class="clear"></div>
|
670
|
+
</div>
|
671
|
+
|
672
|
+
<input id="sid" type="hidden" value="5356d2e58e23b5a4c11dfae7791a91ef" />
|
673
|
+
|
695
674
|
<div class="nodisplay">
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
675
|
+
<div id="colorbox-confirm" class="popup">
|
676
|
+
<h1 id="colorbox-confirm-title"></h1>
|
677
|
+
|
678
|
+
<div class="textbox" id="colorbox-confirm-message"></div>
|
679
|
+
|
680
|
+
<div class="margin-top">
|
681
|
+
<div class="left">
|
682
|
+
<a href="javascript:;" class="colorbox-no-confirm" id="colorbox-confirm-no">No way!</a>
|
683
|
+
</div>
|
684
|
+
|
685
|
+
<div class="right">
|
686
|
+
<div class="small-loader"></div>
|
687
|
+
<a href="javascript:;" class="colorbox-confirm" id="colorbox-confirm-yes">I'm sure</a>
|
688
|
+
</div>
|
689
|
+
|
690
|
+
<div class="clear"></div>
|
691
|
+
</div>
|
692
|
+
</div>
|
714
693
|
</div>
|
715
|
-
|
716
|
-
<div class="nodisplay">
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
<form id="download-form" onsubmit="return false;">
|
724
|
-
|
725
|
-
|
726
|
-
<div><input id="email" type="text" class="placeholder-onkeydown placeholder" title="Email" value="" class="required email" /></div>
|
727
|
-
<div id="message" class="right"></div>
|
728
|
-
<div class="left">
|
729
|
-
<input name="zip-album-submit-
|
730
|
-
</div>
|
731
|
-
<div class="clear"></div>
|
732
|
-
</div>
|
733
|
-
</form>
|
734
|
-
|
735
|
-
</div>
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
<script type="text/javascript">
|
746
|
-
(function() {
|
747
|
-
var roll = Math.random();
|
748
|
-
if(roll < 0.05) {
|
749
|
-
|
750
|
-
(function(_,e,rr,s){
|
751
|
-
_errs=[s];var c=_.onerror;_.onerror=function(){var a=arguments;_errs.push(a);
|
752
|
-
c&&c.apply(this,a)};var b=function(){var c=e.createElement(rr),b=e.getElementsByTagName(rr)[0];
|
753
|
-
c.src="//beacon.errorception.com/"+s+".js";c.async=!0;b.parentNode.insertBefore(c,b)};
|
754
|
-
_.addEventListener?_.addEventListener("load",b,!1):_.attachEvent("onload",b)
|
755
|
-
})(window,document,"script","51d1e360b05ccb10310000d2");
|
756
|
-
|
757
|
-
}
|
758
|
-
})();
|
759
|
-
</script>
|
760
|
-
|
761
|
-
<script type="text/javascript" src="http://s.imgur.com/min/global.js?
|
762
|
-
<script type="text/javascript">
|
763
|
-
var imgur = Imgur.getInstance();
|
764
|
-
imgur.init({
|
765
|
-
|
766
|
-
isDev : 0,
|
767
|
-
host : 'imgur.com',
|
768
|
-
cdnUrl : 'http://i.imgur.com',
|
769
|
-
signed : false
|
770
|
-
});
|
771
|
-
|
772
|
-
imgur.
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
<script type="text/javascript">
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
gallery.
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
_gaq
|
831
|
-
_gaq.push(['
|
832
|
-
_gaq.push(['
|
833
|
-
_gaq.push(['
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
ga
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
elem
|
849
|
-
elem.
|
850
|
-
elem.
|
851
|
-
|
852
|
-
scpt.
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
s
|
879
|
-
s.
|
880
|
-
s.
|
881
|
-
|
882
|
-
x.
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
</
|
892
|
-
</
|
694
|
+
|
695
|
+
<div class="nodisplay">
|
696
|
+
<div id="download-album-form" class="popup">
|
697
|
+
<h1>Download this album</h1>
|
698
|
+
|
699
|
+
<div class="textbox">
|
700
|
+
This album is really big! It's going to take us a bit to get your download ready for you. Enter your email and we will notify you when it's ready.
|
701
|
+
</div>
|
702
|
+
<form id="download-form" onsubmit="return false;">
|
703
|
+
|
704
|
+
<div>
|
705
|
+
<div><input id="email" type="text" class="placeholder-onkeydown placeholder" title="Email" value="" class="required email" /></div>
|
706
|
+
<div id="message" class="right"></div>
|
707
|
+
<div class="left">
|
708
|
+
<input name="zip-album-submit-5356d2e58e23b5a4c11dfae7791a91ef" type="submit" class="button-medium" value="Save" id="save">
|
709
|
+
</div>
|
710
|
+
<div class="clear"></div>
|
711
|
+
</div>
|
712
|
+
</form>
|
713
|
+
</div>
|
714
|
+
</div>
|
715
|
+
|
716
|
+
|
717
|
+
|
718
|
+
|
719
|
+
|
720
|
+
|
721
|
+
|
722
|
+
|
723
|
+
|
724
|
+
<script type="text/javascript">
|
725
|
+
(function() {
|
726
|
+
var roll = Math.random();
|
727
|
+
if(roll < 0.05) {
|
728
|
+
|
729
|
+
(function(_,e,rr,s){
|
730
|
+
_errs=[s];var c=_.onerror;_.onerror=function(){var a=arguments;_errs.push(a);
|
731
|
+
c&&c.apply(this,a)};var b=function(){var c=e.createElement(rr),b=e.getElementsByTagName(rr)[0];
|
732
|
+
c.src="//beacon.errorception.com/"+s+".js";c.async=!0;b.parentNode.insertBefore(c,b)};
|
733
|
+
_.addEventListener?_.addEventListener("load",b,!1):_.attachEvent("onload",b)
|
734
|
+
})(window,document,"script","51d1e360b05ccb10310000d2");
|
735
|
+
|
736
|
+
}
|
737
|
+
})();
|
738
|
+
</script>
|
739
|
+
|
740
|
+
<script type="text/javascript" src="http://s.imgur.com/min/global.js?1379709744"></script>
|
741
|
+
<script type="text/javascript">
|
742
|
+
var imgur = Imgur.getInstance();
|
743
|
+
imgur.init({
|
744
|
+
|
745
|
+
isDev : 0,
|
746
|
+
host : 'imgur.com',
|
747
|
+
cdnUrl : 'http://i.imgur.com',
|
748
|
+
signed : false
|
749
|
+
});
|
750
|
+
|
751
|
+
imgur.initTopBarUploadButton();
|
752
|
+
imgur.generalInit();
|
753
|
+
</script>
|
754
|
+
|
755
|
+
|
756
|
+
<iframe id="zedo" src="http://imgur.com/include/zedoinviewstub1621.html?n=1621;c=1;s=0;w=160;h=600;sz=7;li=false;ns=true;" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" allowTransparency="true" width="1" height="1"></iframe>
|
757
|
+
|
758
|
+
|
759
|
+
<script type="text/javascript" src="http://s.imgur.com/min/gallery.js?1379624102"></script>
|
760
|
+
<script type="text/javascript">
|
761
|
+
var gallery = Imgur.Gallery.getInstance({
|
762
|
+
sid : '5356d2e58e23b5a4c11dfae7791a91ef',
|
763
|
+
cdnUrl : 'http://i.imgur.com',
|
764
|
+
account_url : '',
|
765
|
+
signed : false,
|
766
|
+
sort : 'viral',
|
767
|
+
section : 'hot',
|
768
|
+
window : 'day',
|
769
|
+
isHotImage : '1',
|
770
|
+
prevHash : '8XX0z',
|
771
|
+
nextHash : 'qc2vTYc',
|
772
|
+
hash : 'twoDTCU',
|
773
|
+
baseURL : '/gallery',
|
774
|
+
page : '0',
|
775
|
+
galleryTitle : 'imgur: the simple image sharer',
|
776
|
+
commentName : 'comment',
|
777
|
+
isPro : false,
|
778
|
+
searchQuery : '',
|
779
|
+
debugTLDR : false,
|
780
|
+
isRandom : false,
|
781
|
+
comment_sort : 'best',
|
782
|
+
comment_id : '',
|
783
|
+
|
784
|
+
image : {"hash":"twoDTCU","account_id":null,"account_url":null,"title":"My dog likes to hug me. He also likes to get a running start first.","score":2447,"starting_score":611,"virality":1911.4098095651,"size":676416,"views":593820,"is_hot":true,"is_album":false,"album_cover":null,"mimetype":"image\/jpeg","ext":".jpg","width":2400,"height":1800,"animated":false,"ups":1556,"downs":16,"points":1540,"reddit":"\/r\/aww\/comments\/1msljq\/my_dog_likes_to_hug_me_he_also_likes_to_get_a\/","bandwidth":"374.08 GB","timestamp":"2013-09-20 18:58:00","hot_datetime":"2013-09-21 00:43:49","nsfw":false,"section":"aww","description":""},
|
785
|
+
gallery_type : null,
|
786
|
+
usingCache : true,
|
787
|
+
captionsCacheTime : 30,
|
788
|
+
captionsCacheCookie : 'm_force_cache_miss',
|
789
|
+
subgallery_name : null,
|
790
|
+
subgalleryUpload : true,
|
791
|
+
tldrAds : true
|
792
|
+
});
|
793
|
+
|
794
|
+
gallery.insideInit();
|
795
|
+
gallery.initTldr();
|
796
|
+
|
797
|
+
$(document).ready(function(){
|
798
|
+
var imgurFavorite = Imgur.Favorite.getInstance({
|
799
|
+
method: null
|
800
|
+
});
|
801
|
+
|
802
|
+
imgurFavorite._init();
|
803
|
+
});
|
804
|
+
</script>
|
805
|
+
|
806
|
+
|
807
|
+
|
808
|
+
<script type="text/javascript">
|
809
|
+
var _gaq = _gaq || [];
|
810
|
+
_gaq.push(['_setAccount', 'UA-6671908-2']);
|
811
|
+
_gaq.push(['_setDomainName', 'none']);
|
812
|
+
_gaq.push(['_trackPageview']);
|
813
|
+
_gaq.push(['_trackPageLoadTime']);
|
814
|
+
|
815
|
+
_gaq.push(['_setCustomVar', 1, 'Gallery', 'Inside', 3]);
|
816
|
+
|
817
|
+
(function() {
|
818
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
819
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : '//www') + '.google-analytics.com/ga.js';
|
820
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
821
|
+
})();
|
822
|
+
</script>
|
823
|
+
|
824
|
+
<script type='text/javascript'>
|
825
|
+
var _qevents = _qevents || [];
|
826
|
+
(function() {
|
827
|
+
var elem = document.createElement('script');
|
828
|
+
elem.src = (document.location.protocol == "https:" ? "https://secure" : "//edge") + ".quantserve.com/quant.js";
|
829
|
+
elem.async = true;
|
830
|
+
elem.type = "text/javascript";
|
831
|
+
var scpt = document.getElementsByTagName('script')[0];
|
832
|
+
scpt.parentNode.insertBefore(elem, scpt);
|
833
|
+
})();
|
834
|
+
|
835
|
+
_qevents.push({
|
836
|
+
qacct:"p-f8oruOqDFlMeI"
|
837
|
+
});
|
838
|
+
</script>
|
839
|
+
|
840
|
+
<noscript>
|
841
|
+
<div class="nodisplay">
|
842
|
+
<img src="//pixel.quantserve.com/pixel/p-f8oruOqDFlMeI.gif" border="0" height="1" width="1" alt="Quantcast"/>
|
843
|
+
</div>
|
844
|
+
</noscript>
|
845
|
+
|
846
|
+
|
847
|
+
|
848
|
+
<script type="text/javascript" src="http://tap-cdn.rubiconproject.com/partner/scripts/rubicon/alice.js?pc=8526/13802"></script>
|
849
|
+
<script type='text/javascript' src='http://static.fmpub.net/site/imgur'></script>
|
850
|
+
|
851
|
+
|
852
|
+
|
853
|
+
<script type='text/javascript'>
|
854
|
+
//<![CDATA[
|
855
|
+
var _stippleq = _stippleq || [];
|
856
|
+
(function() {
|
857
|
+
var s = document.createElement('script');
|
858
|
+
s.type = 'text/javascript';
|
859
|
+
s.async = true;
|
860
|
+
s.src = location.protocol === 'https:' ? 'https://stippleit.com/stipple.js' : 'http://stipple.cachefly.net/production/stipple.js';
|
861
|
+
var x = document.getElementsByTagName('script')[0];
|
862
|
+
x.parentNode.insertBefore(s, x);
|
863
|
+
})();
|
864
|
+
//]]>
|
865
|
+
</script>
|
866
|
+
<script type='text/javascript'>
|
867
|
+
//<![CDATA[
|
868
|
+
_stippleq.push(['load', '31Mn39', {}]);
|
869
|
+
//]]>
|
870
|
+
</script>
|
871
|
+
</body>
|
872
|
+
</html>
|