removing border from iframe in jsFiddle plugin

This commit is contained in:
Alex Vernacchia 2013-10-28 14:07:37 -04:00
parent 74d7238934
commit 2f12296619
1 changed files with 1 additions and 1 deletions

View File

@ -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