aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXinhui2016-11-10 11:13:54 +0100
committerXinhui2016-11-10 11:13:59 +0100
commitf95fbafc80369ee4626d920dc4b29e04a71559e7 (patch)
treebe3650be6f1bc19eddb23ced844e2f3aaa571480
parent45a9720b2cf8cc4eb6166ad1dd545b373ba7160e (diff)
downloadchouette-core-f95fbafc80369ee4626d920dc4b29e04a71559e7.tar.bz2
Fix referential info on workbench#show
Refs #1932
-rw-r--r--app/views/referentials/show.js.slim5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/views/referentials/show.js.slim b/app/views/referentials/show.js.slim
index f1d01ce6c..5e47bf935 100644
--- a/app/views/referentials/show.js.slim
+++ b/app/views/referentials/show.js.slim
@@ -3,7 +3,6 @@
| update_infos = function(json) {
| var info, update_info;
| info = $('#referential_' + json.referential_id);
-| console.log(info)
| update_info = function(key, value) {
| if (key.match(/_count$/)) {
| return $(info.find('.' + key)[0]).text(value);
@@ -16,5 +15,5 @@
| };
| _results = [];
| _results.push(update_referential_details());
-| return _results;
-| }); \ No newline at end of file
+| return _results;
+| });