diff options
author | xgizzmo <xgizzmo@ampache> | 2007-01-14 20:28:05 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2007-01-14 20:28:05 +0000 |
commit | 43cc00bb87743334aab8743eef056303ec126e1a (patch) | |
tree | 9e8a2c4c111a6261904d2f65e3ce48c8159c1a7b /lib/javascript-base.js | |
parent | f0706c9b948272642ac21d58c7077cacc8f80883 (diff) | |
download | ampache-43cc00bb87743334aab8743eef056303ec126e1a.tar.gz ampache-43cc00bb87743334aab8743eef056303ec126e1a.tar.bz2 ampache-43cc00bb87743334aab8743eef056303ec126e1a.zip |
added some missing copyright and license info
Diffstat (limited to 'lib/javascript-base.js')
-rw-r--r-- | lib/javascript-base.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/javascript-base.js b/lib/javascript-base.js index 02d19718..bccfb76e 100644 --- a/lib/javascript-base.js +++ b/lib/javascript-base.js @@ -1,3 +1,23 @@ +// +// +// Copyright (c) 2001 - 2006 Ampache.org +// All rights reserved. +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// 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 General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// + function disableField(element) { var element_id = document.getElementById(element); element_id.disabled=true; |