Blame view

mustache/app/views/assets/scripts/content-slider.js 216 Bytes
5a739853   patrick.he   commit
1
2
3
4
5
6
7
8
9
  jQuery(function($) {
  	$('.modal.aside').ace_aside();
  	
  	$(document).one('ajaxloadstart.page', function(e) {
  		//in ajax mode, remove before leaving page
  		$('.modal.aside').remove();
  		$(window).off('.aside')
  	});
  })