From 2d1bffa0a372fb01e5cdb070f9d82abba8f81116 Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Tue, 18 Jul 2017 12:08:42 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20export=20txt/csv=20(le=20tableau=20doit?= =?UTF-8?q?=20=C3=AAtre=20visible)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/script.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/script.js b/client/script.js index 53789a4..319d71b 100644 --- a/client/script.js +++ b/client/script.js @@ -917,6 +917,7 @@ $(function() { }); $('#export-txt').click(function() { + $('.nav-tabs a[href="#scrumblr"]').tab('show'); socket.json.send({ action: 'exportTxt', data: ($('.col').length !== 0) ? $('.col').css('width').replace('px', '') : null @@ -924,6 +925,7 @@ $(function() { }) $('#export-csv').click(function() { + $('.nav-tabs a[href="#scrumblr"]').tab('show'); socket.json.send({ action: 'exportCsv', data: ($('.col').length !== 0) ? $('.col').css('width').replace('px', '') : null