- Clone this gist or click "Download Gist" on the right and extract the archive
- Copy the folder and its contents to somewhere 'safe' (i.e., where you won't delete it)
- Double click index.html to open the webpage in Safari
- Click the 'File' menu, then click 'Open in Dashboard...'
- Your screen will dim, and you can select the area you want to display in the widget
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
margin: 0; | |
} | |
</style> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mozilla Public License, version 2.0 | |
1. Definitions | |
1.1. "Contributor" | |
means each individual or legal entity that creates, contributes to the | |
creation of, or owns Covered Software. | |
1.2. "Contributor Version" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Code written by Bryan Clark - merely pasted into a gist by Roland Tanglao | |
// Licenced under the Mozilla Public License, http://www.mozilla.org/MPL/MPL-1.1.html | |
// This code which is a JetPack for Mozilla Firefox doesn't work! It's prototype and proof of concept only | |
// See spec at https://wiki.mozilla.org/Thunderbird/Support/GetSatisfaction/Accelerator | |
var TOPICS = []; | |
var url = "http://www.getsatisfaction.com/mozilla_messaging/topics.rss" | |
$.get( url, function(xml){ | |
var items = $(xml).find("item"); |