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.

bottom.js 792B

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