vendor/assets/javascripts/noty/layouts/topCenter.js in noty-rails-2.2.9 vs vendor/assets/javascripts/noty/layouts/topCenter.js in noty-rails-2.3.4
- old
+ new
@@ -1,41 +1,37 @@
-(function($) {
+$.noty.layouts.topCenter = {
+ name : 'topCenter',
+ options : { // overrides options
- $.noty.layouts.topCenter = {
- name : 'topCenter',
- options : { // overrides options
+ },
+ container: {
+ object : '<ul id="noty_topCenter_layout_container" />',
+ selector: 'ul#noty_topCenter_layout_container',
+ style : function() {
+ $(this).css({
+ top : 20,
+ left : 0,
+ position : 'fixed',
+ width : '310px',
+ height : 'auto',
+ margin : 0,
+ padding : 0,
+ listStyleType: 'none',
+ zIndex : 10000000
+ });
- },
- container: {
- object : '<ul id="noty_topCenter_layout_container" />',
- selector: 'ul#noty_topCenter_layout_container',
- style : function() {
- $(this).css({
- top : 20,
- left : 0,
- position : 'fixed',
- width : '310px',
- height : 'auto',
- margin : 0,
- padding : 0,
- listStyleType: 'none',
- zIndex : 10000000
- });
-
- $(this).css({
- left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px'
- });
- }
- },
- parent : {
- object : '<li />',
- selector: 'li',
- css : {}
- },
- css : {
- display: 'none',
- width : '310px'
- },
- addClass : ''
- };
-
-})(jQuery);
+ $(this).css({
+ left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px'
+ });
+ }
+ },
+ parent : {
+ object : '<li />',
+ selector: 'li',
+ css : {}
+ },
+ css : {
+ display: 'none',
+ width : '310px'
+ },
+ addClass : ''
+};