noty
Version:
noty is a jQuery plugin that makes it easy to create alert - success - error - warning - information - confirmation messages as an alternative the standard alert dialog. Each notification is added to a queue. (Optional)
27 lines • 684 B
JavaScript
$.noty.layouts.inline = {
name : 'inline',
options : {},
container: {
object : '<ul class="noty_inline_layout_container" />',
selector: 'ul.noty_inline_layout_container',
style : function() {
$(this).css({
width : '100%',
height : 'auto',
margin : 0,
padding : 0,
listStyleType: 'none',
zIndex : 9999999
});
}
},
parent : {
object : '<li />',
selector: 'li',
css : {}
},
css : {
display: 'none'
},
addClass : ''
};