forked from Coded/SIPRP
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							565 B
						
					
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							565 B
						
					
					
				;(function($) {
 | 
						|
 | 
						|
	$.noty.layouts.bottom = {
 | 
						|
		name: 'bottom',
 | 
						|
		options: {},
 | 
						|
		container: {
 | 
						|
			object: '<ul id="noty_bottom_layout_container" />',
 | 
						|
			selector: 'ul#noty_bottom_layout_container',
 | 
						|
			style: function() {
 | 
						|
				$(this).css({
 | 
						|
					bottom: 0,
 | 
						|
					left: '5%',
 | 
						|
					position: 'fixed',
 | 
						|
					width: '90%',
 | 
						|
					height: 'auto',
 | 
						|
					margin: 0,
 | 
						|
					padding: 0,
 | 
						|
					listStyleType: 'none',
 | 
						|
					zIndex: 9999999
 | 
						|
				});
 | 
						|
			}
 | 
						|
		},
 | 
						|
		parent: {
 | 
						|
			object: '<li />',
 | 
						|
			selector: 'li',
 | 
						|
			css: {}
 | 
						|
		},
 | 
						|
		css: {
 | 
						|
			display: 'none'
 | 
						|
		},
 | 
						|
		addClass: ''
 | 
						|
	};
 | 
						|
 | 
						|
})(jQuery); |