vendor/assets/javascripts/noty/layouts/center.js in noty-rails-2.2.2 vs vendor/assets/javascripts/noty/layouts/center.js in noty-rails-2.2.9
- old
+ new
@@ -1,56 +1,57 @@
(function($) {
- $.noty.layouts.center = {
- name: 'center',
- options: { // overrides options
-
- },
- container: {
- object: '<ul id="noty_center_layout_container" />',
- selector: 'ul#noty_center_layout_container',
- style: function() {
- $(this).css({
- position: 'fixed',
- width: '310px',
- height: 'auto',
- margin: 0,
- padding: 0,
- listStyleType: 'none',
- zIndex: 10000000
- });
+ $.noty.layouts.center = {
+ name : 'center',
+ options : { // overrides options
- // getting hidden height
- var dupe = $(this).clone().css({visibility:"hidden", display:"block", position:"absolute", top: 0, left: 0}).attr('id', 'dupe');
- $("body").append(dupe);
- dupe.find('.i-am-closing-now').remove();
- dupe.find('li').css('display', 'block');
- var actual_height = dupe.height();
- dupe.remove();
+ },
+ container: {
+ object : '<ul id="noty_center_layout_container" />',
+ selector: 'ul#noty_center_layout_container',
+ style : function() {
+ $(this).css({
+ position : 'fixed',
+ width : '310px',
+ height : 'auto',
+ margin : 0,
+ padding : 0,
+ listStyleType: 'none',
+ zIndex : 10000000
+ });
- if ($(this).hasClass('i-am-new')) {
- $(this).css({
- left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px',
- top: ($(window).height() - actual_height) / 2 + 'px'
- });
- } else {
- $(this).animate({
- left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px',
- top: ($(window).height() - actual_height) / 2 + 'px'
- }, 500);
- }
-
- }
- },
- parent: {
- object: '<li />',
- selector: 'li',
- css: {}
- },
- css: {
- display: 'none',
- width: '310px'
- },
- addClass: ''
- };
+ // getting hidden height
+ var dupe = $(this).clone().css({visibility: "hidden", display: "block", position: "absolute", top: 0, left: 0}).attr('id', 'dupe');
+ $("body").append(dupe);
+ dupe.find('.i-am-closing-now').remove();
+ dupe.find('li').css('display', 'block');
+ var actual_height = dupe.height();
+ dupe.remove();
+
+ if($(this).hasClass('i-am-new')) {
+ $(this).css({
+ left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px',
+ top : ($(window).height() - actual_height) / 2 + 'px'
+ });
+ }
+ else {
+ $(this).animate({
+ left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px',
+ top : ($(window).height() - actual_height) / 2 + 'px'
+ }, 500);
+ }
+
+ }
+ },
+ parent : {
+ object : '<li />',
+ selector: 'li',
+ css : {}
+ },
+ css : {
+ display: 'none',
+ width : '310px'
+ },
+ addClass : ''
+ };
})(jQuery);
\ No newline at end of file