From 6cb3c3b404b37b2aed35ffa0913a974f09cc3d3a Mon Sep 17 00:00:00 2001 From: chromakode Date: Sun, 4 Apr 2010 21:40:14 -0700 Subject: [PATCH] Prune usage examples from jquery.konami.js lib header. --- src/jquery.konami.js | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/jquery.konami.js b/src/jquery.konami.js index 27f40e7..0b8a391 100644 --- a/src/jquery.konami.js +++ b/src/jquery.konami.js @@ -5,28 +5,6 @@ * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html - * - * Usage: - * // konami code unlocks the tetris - * $('#tetris').konami(function(){ - * $(this).show(); - * }); - * - * - * // enable all weapons on 'idkfa'. - * // note that each weapon must be unlocked by its own code entry - * $('.weapon').konami(function(){ - * $(this).addClass('enabled'); - * }, {'code':[73, 68, 75, 70, 65]}); - * - * - * // listens on any element that can trigger a keyup event. - * // unlocks all weapons at once - * $(document).konami(function(){ - * $('.weapon').addClass('enabled'); - * }, {'code':[73, 68, 75, 70, 65]}); - * - * */ (function($){ $.fn.konami = function( fn, params ) {