Sha256: eebf91fcee430e71d1b31a8f21371c9269b8e4ffb79432ecd618bf26e1e0db74
Contents?: true
Size: 1.21 KB
Versions: 7
Compression:
Stored size: 1.21 KB
Contents
// use to give the preview of details for an event below a calendar var updateEventDescription = function(event, jsEvent) { $("#event_quick_description").empty(); $("#event_quick_description").append( $("<h3/>").append( $('<a/>', { text : event.title, href : event.url }) ) ).append(event.details); $("#event_quick_description").show(); } jQuery(function($) { $('ul.events').attach(Collapsible); $('a.show_hide_link').attach(ShowHideLink); $('a.view_events').attach(EventView); $('div.links').attach(MagicButtons); $('div.links').attach(QuickZoom); $('div.event').attach(QuickZoom); $('ul.events').attach(QuickZoom); $('div.links').attach(ecDynamicForm, { formElement: $('#link_dynamic_form') }); }); /* http://www.learningjquery.com/2007/08/clearing-form-data */ $.fn.clearForm = function() { return this.each(function() { var type = this.type, tag = this.tagName.toLowerCase(); if (tag == 'form') return $(':input',this).clearForm(); if (type == 'text' || type == 'password' || tag == 'textarea') this.value = ''; else if (type == 'checkbox' || type == 'radio') this.checked = false; else if (tag == 'select') this.selectedIndex = -1; }); };
Version data entries
7 entries across 7 versions & 1 rubygems