Revert "Make a nice top/bottom center global position"
This commit is contained in:
Vendored
+2
-17
@@ -338,19 +338,6 @@
|
|||||||
return elems[fn].apply(elems, args);
|
return elems[fn].apply(elems, args);
|
||||||
};
|
};
|
||||||
|
|
||||||
Notification.prototype.setGlobalNoticePosition = function(align) {
|
|
||||||
this.wrapper.css({visibility: 'hidden', display: 'block', float: 'left'});
|
|
||||||
this.container.css({visibility: 'hidden', display: 'block'});
|
|
||||||
if (align === 'center') {
|
|
||||||
var css = {};
|
|
||||||
css.clear = 'both';
|
|
||||||
css.marginLeft = 0 - this.wrapper.width() / 2 + 'px';
|
|
||||||
this.wrapper.css(css);
|
|
||||||
}
|
|
||||||
this.wrapper.css({visibility: ''});
|
|
||||||
this.container.css({visibility: '', display: 'none'});
|
|
||||||
};
|
|
||||||
|
|
||||||
Notification.prototype.setGlobalPosition = function() {
|
Notification.prototype.setGlobalPosition = function() {
|
||||||
var p = this.getPosition();
|
var p = this.getPosition();
|
||||||
var pMain = p[0];
|
var pMain = p[0];
|
||||||
@@ -366,16 +353,14 @@
|
|||||||
if (align === "middle") {
|
if (align === "middle") {
|
||||||
css.top = '45%';
|
css.top = '45%';
|
||||||
} else if (align === "center") {
|
} else if (align === "center") {
|
||||||
css.left = '50%';
|
css.left = '45%';
|
||||||
} else {
|
} else {
|
||||||
css[align] = 0;
|
css[align] = 0;
|
||||||
}
|
}
|
||||||
anchor.css(css).addClass(pluginClassName + "-corner");
|
anchor.css(css).addClass(pluginClassName + "-corner");
|
||||||
$("body").append(anchor);
|
$("body").append(anchor);
|
||||||
}
|
}
|
||||||
var elem = anchor.prepend(this.wrapper);
|
return anchor.prepend(this.wrapper);
|
||||||
this.setGlobalNoticePosition(align);
|
|
||||||
return elem;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Notification.prototype.setElementPosition = function() {
|
Notification.prototype.setElementPosition = function() {
|
||||||
|
|||||||
@@ -36,13 +36,6 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$.notify('Line text 1', {position: 'top center'});
|
|
||||||
$.notify('Line text 01', {position: 'top center'});
|
|
||||||
$.notify('Line text 001', {position: 'top center'});
|
|
||||||
$.notify('Line text 1', {position: 'bottom center'});
|
|
||||||
$.notify('Line text 01', {position: 'bottom center'});
|
|
||||||
$.notify('Line text 001', {position: 'bottom center'});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Reference in New Issue
Block a user