remove print statements

This commit is contained in:
rlx 2012-06-16 20:46:38 +00:00
parent 9d475e6012
commit d63113d7bd

View file

@ -510,7 +510,6 @@ Ox.Dialog = function(options, self) {
} }
function resizeWindow() { function resizeWindow() {
Ox.print('RESIZE WINDOW')
self.options.width = Math.min(self.options.width, window.innerWidth); self.options.width = Math.min(self.options.width, window.innerWidth);
self.options.height = Math.min(self.options.height, window.innerHeight - self.barsHeight); self.options.height = Math.min(self.options.height, window.innerHeight - self.barsHeight);
var offset = that.offset(); var offset = that.offset();
@ -586,7 +585,6 @@ Ox.Dialog = function(options, self) {
} }
function setCSS(css, animate) { function setCSS(css, animate) {
Ox.print('DIALOG SET CSS', css)
var ms = animate ? 100 : 0, var ms = animate ? 100 : 0,
offset = that.offset(), offset = that.offset(),
triggerEvent = self.isOpen && ( triggerEvent = self.isOpen && (