/** * Page enhancements for ease.js website * * Copyright (C) 2010 Mike Gerwitz * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ ( function() { var $trybox = null, $trybtn = null ; $( document ).ready( function() { appendTry(); if ( document.location.href.substr( -6 ) === '#tryit' ) { console.log( 'ok' ); toggleTry(); } } ); function appendTry() { $trybtn = $( '
' ) .attr( 'id', 'try' ) .text( 'Try It' ) .addClass( 'btn large glow' ) .mousedown( function( event ) { // prevent dragging from highlighting the text (so it looks more // like an image) event.preventDefault(); } ) .click( function( event ) { toggleTry(); } ) .appendTo( '#header' ); } function toggleTry() { var $try = getTry(); $trybtn.text( ( $try.is( ':visible' ) ) ? 'Try It' : 'Hide It' ); $try.slideToggle(); } function getTry() { var $txt; return $trybox || ( function createTryBox() { $txt = $( '