Skip to content

Instantly share code, notes, and snippets.

View Sasoon's full-sized avatar

Sasoon Sarkisian Sasoon

  • Sydney, Australia
View GitHub Profile
@Sasoon
Sasoon / behaviors.js
Created November 29, 2016 02:51
Drupal Lightbox module
/**
* Subscribe Lightbox
*/
Drupal.behaviors.dgLightbox = {
attach: function (context, settings) {
$('body', context).once('dgLightbox', function () {
var webform = $('.webform-client-form-271');
if (webform.length) {
(webform.children('div')).prepend($("<p class='close-lightbox'>Cancel</p>"));