Skip to content

Commit

Permalink
Fix the size of Clippy because it prevents Copy.
Browse files Browse the repository at this point in the history
A commit made in #433 / #440 is broken in recent versions of Chrome which do not like Objects to extend past their bounds, the oversizing of the area causes Chrome to trip out (at least on Linux, I assume on Windows and OS X too) because it extends into the text area and thus prevents any manual copy and paste.  This could also be broken by other changes and might not necessarily be related to Chrome at all.

The size of 24px was manually selected after adjusting the maximum size in inspector until I could copy.
  • Loading branch information
envygeeks committed Aug 28, 2014
1 parent 83ac3d7 commit b29a67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/rubygems/_clippy.html.erb
Expand Up @@ -9,7 +9,7 @@
<param name="wmode" value="transparent">
<embed src="/<%= embed %>.swf"
width="110"
height="32"
height="24"
name="clippy"
quality="high"
allowScriptAccess="always"
Expand Down

0 comments on commit b29a67c

Please sign in to comment.