aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorParker Moore <parkrmoore@gmail.com>2013-11-17 22:47:27 -0500
committerParker Moore <parkrmoore@gmail.com>2013-11-17 22:47:27 -0500
commit1230e018843ec3bcb17dc4297f2b0f47693a7608 (patch)
tree64d9578e934d058dd0bcd1da380ae6379fe187f2 /plugins
parent7f26224bb84e5fef01c4a55effd22fc2b7f1e9c4 (diff)
parentd577da7c0af912cec131fa76ea5f265388aae5eb (diff)
downloadmy_new_personal_website-1230e018843ec3bcb17dc4297f2b0f47693a7608.tar.xz
my_new_personal_website-1230e018843ec3bcb17dc4297f2b0f47693a7608.zip
Merge branch 'master' of github.com:imathis/octopress
* 'master' of github.com:imathis/octopress: removing border from iframe in jsFiddle plugin * properly escaped site title and post/page title in the RSS feeds; * consistently convert page and post titles to titlecase if site.titlecase is true;
Diffstat (limited to 'plugins')
-rw-r--r--plugins/jsfiddle.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/jsfiddle.rb b/plugins/jsfiddle.rb
index 0046f9b5..815910e2 100644
--- a/plugins/jsfiddle.rb
+++ b/plugins/jsfiddle.rb
@@ -29,7 +29,7 @@ module Jekyll
def render(context)
if @fiddle
- "<iframe style=\"width: #{@width}; height: #{@height}\" src=\"http://jsfiddle.net/#{@fiddle}/embedded/#{@sequence}/#{@skin}/\"></iframe>"
+ "<iframe style=\"width: #{@width}; height: #{@height}\" frameborder=\"0\" seamless=\"seamless\" src=\"http://jsfiddle.net/#{@fiddle}/embedded/#{@sequence}/#{@skin}/\"></iframe>"
else
"Error processing input, expected syntax: {% jsfiddle shorttag [tabs] [skin] [height] [width] %}"
end