/[drupal]/contributions/modules/slideshowcs/slideshowcs.js
ViewVC logotype

Contents of /contributions/modules/slideshowcs/slideshowcs.js

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Wed Sep 3 13:21:24 2008 UTC (14 months, 3 weeks ago) by davebv
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, HEAD
Branch point for: DRUPAL-6--1
File MIME type: text/javascript
Initial commit of SlideShowCS module. A fancy slideshow with jquery plugins
1 /*
2 * Copyright 2007 by David Becerril <dave.bv [at] gmail [dot] com>
3 *
4 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General
5 * Public License as published by the Free Software Foundation; either version 2 of the License, or (at your
6 * option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
9 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
10 * for more details.
11 *
12 * You should have received a copy of the GNU General Public License along with this program; if not, write to
13 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 */
16
17 $(document).ready(
18 function() {
19 var Imagen = Drupal.settings.slideshowcs.imagesCS ;
20 var Fading = Drupal.settings.slideshowcs.fade;
21
22 $('#slideshowCS').crossSlide({
23 fade: Fading
24 },
25 //imagenes
26 Imagen
27 );
28 });

  ViewVC Help
Powered by ViewVC 1.1.2