vendor/assets/javascripts/noty/layouts/bottomLeft.js in noty-rails-2.2.9 vs vendor/assets/javascripts/noty/layouts/bottomLeft.js in noty-rails-2.3.4
- old
+ new
@@ -1,43 +1,39 @@
-(function($) {
+$.noty.layouts.bottomLeft = {
+ name : 'bottomLeft',
+ options : { // overrides options
- $.noty.layouts.bottomLeft = {
- name : 'bottomLeft',
- options : { // overrides options
+ },
+ container: {
+ object : '<ul id="noty_bottomLeft_layout_container" />',
+ selector: 'ul#noty_bottomLeft_layout_container',
+ style : function() {
+ $(this).css({
+ bottom : 20,
+ left : 20,
+ position : 'fixed',
+ width : '310px',
+ height : 'auto',
+ margin : 0,
+ padding : 0,
+ listStyleType: 'none',
+ zIndex : 10000000
+ });
- },
- container: {
- object : '<ul id="noty_bottomLeft_layout_container" />',
- selector: 'ul#noty_bottomLeft_layout_container',
- style : function() {
+ if(window.innerWidth < 600) {
$(this).css({
- bottom : 20,
- left : 20,
- position : 'fixed',
- width : '310px',
- height : 'auto',
- margin : 0,
- padding : 0,
- listStyleType: 'none',
- zIndex : 10000000
+ left: 5
});
-
- if(window.innerWidth < 600) {
- $(this).css({
- left: 5
- });
- }
}
- },
- parent : {
- object : '<li />',
- selector: 'li',
- css : {}
- },
- css : {
- display: 'none',
- width : '310px'
- },
- addClass : ''
- };
-
-})(jQuery);
+ }
+ },
+ parent : {
+ object : '<li />',
+ selector: 'li',
+ css : {}
+ },
+ css : {
+ display: 'none',
+ width : '310px'
+ },
+ addClass : ''
+};
\ No newline at end of file