Now all modules are in core modules folder
This commit is contained in:
parent
5ba1cdfa0b
commit
05b6a91b0c
1907 changed files with 0 additions and 0 deletions
|
@ -1,33 +0,0 @@
|
|||
// $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();
|
||||
}
|
||||
};
|
||||
|
Reference in a new issue