onebox 1.0.1 → 1.1.0

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