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.

topLeft.js 985B

123456789101112131415161718192021222324252627282930313233343536373839
  1. $.noty.layouts.topLeft = {
  2. name : 'topLeft',
  3. options : { // overrides options
  4. },
  5. container: {
  6. object : '<ul id="noty_topLeft_layout_container" />',
  7. selector: 'ul#noty_topLeft_layout_container',
  8. style : function() {
  9. $(this).css({
  10. top : 20,
  11. left : 20,
  12. position : 'fixed',
  13. width : '310px',
  14. height : 'auto',
  15. margin : 0,
  16. padding : 0,
  17. listStyleType: 'none',
  18. zIndex : 10000000
  19. });
  20. if(window.innerWidth < 600) {
  21. $(this).css({
  22. left: 5
  23. });
  24. }
  25. }
  26. },
  27. parent : {
  28. object : '<li />',
  29. selector: 'li',
  30. css : {}
  31. },
  32. css : {
  33. display: 'none',
  34. width : '310px'
  35. },
  36. addClass : ''
  37. };