Commit ae7c2b3f authored by Michal Čihař's avatar Michal Čihař

Remove debugging code

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent a2b5876b
...@@ -388,7 +388,6 @@ $(function () { ...@@ -388,7 +388,6 @@ $(function () {
/* Row expander */ /* Row expander */
$('.expander').click(function () { $('.expander').click(function () {
var $this = $(this); var $this = $(this);
console.log($this);
var $tableRow = $this.closest('tr'); var $tableRow = $this.closest('tr');
var $nextRow = $tableRow.next(); var $nextRow = $tableRow.next();
$nextRow.toggle(); $nextRow.toggle();
...@@ -441,7 +440,6 @@ $(function () { ...@@ -441,7 +440,6 @@ $(function () {
} }
} else if ($('.translation-tabs').length > 0 && $.cookie('translate-tab')) { } else if ($('.translation-tabs').length > 0 && $.cookie('translate-tab')) {
/* From cookie */ /* From cookie */
console.log('switch ' + $.cookie('translate-tab'));
activeTab = $('[data-toggle=tab][href=' + $.cookie('translate-tab') + ']'); activeTab = $('[data-toggle=tab][href=' + $.cookie('translate-tab') + ']');
if (activeTab.length) { if (activeTab.length) {
activeTab.tab('show'); activeTab.tab('show');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment