BioTorrents.de’s version of Gazelle
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.

inline.js 684B

123456789101112131415161718192021222324252627
  1. $.noty.layouts.inline = {
  2. name : 'inline',
  3. options : {},
  4. container: {
  5. object : '<ul class="noty_inline_layout_container" />',
  6. selector: 'ul.noty_inline_layout_container',
  7. style : function() {
  8. $(this).css({
  9. width : '100%',
  10. height : 'auto',
  11. margin : 0,
  12. padding : 0,
  13. listStyleType: 'none',
  14. zIndex : 9999999
  15. });
  16. }
  17. },
  18. parent : {
  19. object : '<li />',
  20. selector: 'li',
  21. css : {}
  22. },
  23. css : {
  24. display: 'none'
  25. },
  26. addClass : ''
  27. };