|
From: Chris S. <too...@ph...> - 2009-08-15 23:14:32
|
Author: toonarmy
Date: Sun Aug 16 00:13:47 2009
New Revision: 9995
Log:
Clarify r9994 #49335
Modified:
branches/phpBB-3_0_0/phpBB/styles/prosilver/template/styleswitcher.js
Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/styleswitcher.js
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/prosilver/template/styleswitcher.js (original)
--- branches/phpBB-3_0_0/phpBB/styles/prosilver/template/styleswitcher.js Sun Aug 16 00:13:47 2009
***************
*** 1,7 ****
function fontsizeup(event)
{
! // Skip tabs
if (event && getKeyCode(event) == 9)
{
return true;
--- 1,7 ----
function fontsizeup(event)
{
! // Skip tabs; 9 being the ASCII code for a tab
if (event && getKeyCode(event) == 9)
{
return true;
|