$(function(){var $container = $('#container'); $container.isotope({itemSelector : '.story'}); var $optionSets = $('#sorting .option-set'),$optionLinks = $optionSets.find('a'); $optionLinks.click(function(){var $this = $(this);// don't proceed if already selectedif ( $this.hasClass('selected') ) {return false;}var $optionSet = $this.parents('.option-set');$optionSet.find('.selected').removeClass('selected');$this.addClass('selected'); // make option object dynamically, i.e. { filter: '.my-filter-class' }var options = {},key = $optionSet.attr('data-option-key'),value = $this.attr('data-option-filter');// parse 'false' as false booleanvalue = value === 'false' ? false : value;options[ key ] = value;if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {// changes in layout modes need extra logicchangeLayoutMode( $this, options )} else {// otherwise, apply new options$container.isotope( options );} return false;}); });