Skip to content

Commit

Permalink
removing debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperq committed Sep 20, 2013
1 parent 5b31c52 commit 7fc9814
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion ethersheet.js
Expand Up @@ -119,7 +119,6 @@ Ethersheet.prototype.initializeDisplay = function(o){
data: es.data
}).render();

console.log($('.i18n'));
$('.i18n').i18n();
});
};
Expand Down
2 changes: 0 additions & 2 deletions lib/expression_helpers.js
Expand Up @@ -67,11 +67,9 @@ parseCellRange: function(cell_range){
var cell_values = [];
for(var i = tl_row_idx; i <= br_row_idx; i++){
for(var j = tl_col_idx; j <= br_col_idx; j++){
console.log(i,j);
cell_values.push(sheet.getRawValue(sheet.getCell(sheet.rowAt(i),sheet.colAt(j))));
}
}
console.log('range', cell_values);
return cell_values;
},

Expand Down
1 change: 0 additions & 1 deletion models/sheet_collection.js
Expand Up @@ -24,7 +24,6 @@ var SheetCollection = module.exports = ESCollection.extend({
var sheet = new Sheet(o);
sheet.meta.title = 'Sheet' + (this.length * 1 + 1);
this.add(sheet);
console.log('getting title', this);
this.send({
id: this.id,
type: 'sheets',
Expand Down
4 changes: 0 additions & 4 deletions views/ethersheet_container.js
Expand Up @@ -59,7 +59,6 @@ var EthersheetContainer = module.exports = View.extend({
var $el = $(e.currentTarget);

if($el.hasClass('active')){
console.log('close!');
//close the panel
$el.removeClass('active');
this.$menu.animate({'right':'258px'},speed);
Expand All @@ -69,15 +68,12 @@ var EthersheetContainer = module.exports = View.extend({
});
$('#es-panel-1').animate({'margin-left':'10px'},speed);
}else{
console.log('open!');
$('.es-sidebar-toggle').removeClass('active');
$el.addClass('active');
this.$panel_0.show();
$('.menu-container').hide();
var container = $el.attr('id').replace('icon', 'menu-container');
console.log('container', container);
$("#" + container).show();
console.log('width', this.$panel_0.width());
if(this.$panel_0.width() <= 0){
this.$menu.animate({'right':'0px'},speed);
this.$panel_0.animate({'width':'258px'},speed);
Expand Down
1 change: 0 additions & 1 deletion views/sheet_list.js
Expand Up @@ -54,7 +54,6 @@ var SheetListView = module.exports = View.extend({
$el = $(e.currentTarget);
$('.es-menu-button').removeClass('active');
$el.addClass('active');
console.log('setting sheet', $el.attr('id'));
this.getUsers().getCurrentUser().setCurrentSheetId($el.attr('id'));
}
});
Expand Down

0 comments on commit 7fc9814

Please sign in to comment.