|
|
Drupal example source code file (lightbox_modal.js)
The lightbox_modal.js Drupal example source code// $Id: lightbox_modal.js,v 1.1.2.5 2010/06/07 17:22:03 snpower Exp $ function lightbox2_login() { $("a[href*='/user/login'], a[href*='?q=user/login']").each(function() { $(this).attr({ href: this.href.replace(/user\/login?/,"user/login/lightbox2"), rel: 'lightmodal[|width:250px; height:210px;]' }); $(this).addClass('lightmodal-login'); }); } function lightbox2_contact() { $("a[href$='/contact'], a[href$='?q=contact']").each(function() { if (!this.href.match('admin/build/contact')) { $(this).attr({ href: this.href.replace(/contact?/,"contact/lightbox2"), rel: 'lightmodal[|width:450px; height:450px;]' }); $(this).addClass('lightmodal-contact'); } }); } Drupal.behaviors.initLightboxModal = function (context) { if (Drupal.settings.lightbox2.enable_login) { lightbox2_login(); } if (Drupal.settings.lightbox2.enable_contact) { lightbox2_contact(); } }; Other Drupal examples (source code examples)Here is a short list of links related to this Drupal lightbox_modal.js source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.