2 * Copyright 2007 Jesse Andrews, Manish Singh, Ian Fischer
4 * This file may be used under the terms of of the
5 * GNU General Public License Version 2 or later (the "GPL"),
6 * http://www.gnu.org/licenses/gpl.html
8 * Software distributed under the License is distributed on an "AS IS" basis,
9 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
10 * for the specific language governing rights and limitations under the
14 function DisplayInfo(container) {
15 container.className = 'grid';
18 var div = document.createElement('div');
19 container.appendChild(div);
21 this.start = function() {
22 div.innerHTML = '<br />To use Taboo, just click on the red "+" icon next to your address bar. This saves the tab for you.<br />' +
23 'To view your saved taboos, click on the red "T".';
26 this.finish = function() {}
28 this.add = function(tab) {}