Skip to content

Commit

Permalink
removing errant debugger statements
Browse files Browse the repository at this point in the history
  • Loading branch information
anutron committed Feb 8, 2011
1 parent 3a703fd commit ced4266
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion Source/Utilities/Stacker.js
Expand Up @@ -155,7 +155,6 @@ var Stacker = new Class({
//noOrder - (boolean) if true will skip the z-index order phase
//force - (boolean) if true, will bring the instance to the top even if it's already focused
focus: function(instance, noOrder, force){
if (window.paused) debugger;
if (!instance || (instance == this.focused && instance._stacked && instance.getState('focused') && !force)) return;
if (this.focused && this.focused != instance) this.focused.blur();
if (instance.getState('disabled')) return;
Expand Down
1 change: 0 additions & 1 deletion Source/Widgets/ART.SplitView.js
Expand Up @@ -331,7 +331,6 @@ var splitter = {
var other = this._getOtherSide(side);;
var current = this[toggle];
var previous = this._previous[side];
if (window.paused) debugger;
if (previous == null) previous = this[other];
var to = current == 0 ? previous : 0;
this.fold(side, to, hideSplitter, immediate);
Expand Down
1 change: 0 additions & 1 deletion Source/Widgets/ART.Window.js
Expand Up @@ -525,7 +525,6 @@ ART.Window = new Class({
// compute the height and width for the instance
var ranges = this.getSizeRange();
if (sheet.height != null && sheet.width != null) {
if (window.paused) debugger;
cs.height = sheet.height.limit(ranges.minHeight, ranges.maxHeight < ranges.minHeight ? ranges.minHeight : ranges.maxHeight);
cs.width = sheet.width.limit(ranges.minWidth, ranges.maxWidth < ranges.minWidth ? ranges.minWidth : ranges.maxWidth);
if (cs.height < cs.headerHeight + cs.footerHeight) cs.height = cs.headerHeight + cs.footerHeight;
Expand Down

0 comments on commit ced4266

Please sign in to comment.