Sha256: 3ae25e4bc744d815e700e4f899e5e8fb6957e937eaf0cbc394505ead7e67e0e6
Contents?: true
Size: 656 Bytes
Versions: 12
Compression:
Stored size: 656 Bytes
Contents
/*global Application $id */ // Behavior for calendar (schedule) navigation. ;(function($){ $.calnav = function(){ $('.calnav .item[href]') .off('click') .on('click', function() { Application.showView( $.deserialize(this.getAttribute('href')) ); }); // CFB2 & NFL3 only $('#calnav_dropdown').filterable(); // CFB2 & NFL3 only var weekLabel = $id('week_label'); if (weekLabel) { weekLabel.innerHTML = $id('calnav_dropdown').options[$id('calnav_dropdown').selectedIndex].text; } }; })(Zepto);
Version data entries
12 entries across 12 versions & 1 rubygems