Skip to content
This repository has been archived by the owner on Oct 11, 2018. It is now read-only.

Commit

Permalink
* Changed the references of 'Stack Overflow' to 'Stack Exchange'.
Browse files Browse the repository at this point in the history
* Set the header background colour to white so it still looks alright on other sites.
  • Loading branch information
jbolster committed Feb 23, 2011
1 parent b448f14 commit ec10475
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Html/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h2>Options</h2>
<div class="howdoesitwork">
<h2>How does it work?</h2>
<ol>
<li>All the code blocks on StackOverflow now have a header. Click the link that represents the type of code you want to fiddle (click again to unset).<img class="manual" src="/Images/doc-1.png" /></li>
<li>All the code blocks on the StackExchange sites now have a header. Click the link that represents the type of code you want to fiddle (click again to unset).<img class="manual" src="/Images/doc-1.png" /></li>
<li>Do it for any other code block you want to send to your fiddle.</li>
<li>After you've set one type (HTML/JS/CSS), a 'Send to jsFiddle' link appears.<img class="manual" src="/Images/doc-2.png" /></li>
<li>Click any 'Send to jsFiddle' link and off to jsFiddle your chosen code goes!</li>
Expand Down
2 changes: 1 addition & 1 deletion README.textile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
h1. Stack Fiddle

Stack Fiddle is a Google Chrome extension that helps you to post code blocks to jsFiddle. It modifies the Stack Overflow question pages to give all the code block headers, providing an easy way to select different types of code to send to jsFiddle.
Stack Fiddle is a Google Chrome extension that helps you to post code blocks to jsFiddle. It modifies the Stack Exchange question pages to give all the code block headers, providing an easy way to select different types of code to send to jsFiddle.

* Enabled only on questions with certain tags
* Allows HTML / JavaScript and CSS to be sent
Expand Down
2 changes: 1 addition & 1 deletion Scripts/stackfiddle.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jQuery(function($,undefined){
});

$("#stackfiddle-title").val("Fiddle for " + $("#question-header").text().trim());
$("#stackfiddle-description").val("This fiddle was created using the Stack Fiddle Chrome extension - the StackExchange question that was fiddled was: " + document.location.href);
$("#stackfiddle-description").val("This fiddle was created using the Stack Fiddle Chrome extension - the Stack Exchange question that was fiddled was: " + document.location.href);

chrome.extension.sendRequest({'method':'getlocal', 'param':'optionsInframe'}, function(response)
{
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Stack Fiddle",
"version": "1.0.4",
"description": "A jsFiddle helper for Stack Overflow",
"description": "A jsFiddle helper for the Stack Exchange sites",
"background_page": "Html/background.html",
"options_page": "Html/options.html",
"incognito": "split",
Expand Down
1 change: 1 addition & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
opacity: 0.8;
border: 1px solid #ddd;
border-bottom: none;
background-color: #fff;
}

.stackfiddle-header span{
Expand Down

0 comments on commit ec10475

Please sign in to comment.