From: Loic Baron Date: Mon, 14 Apr 2014 12:35:59 +0000 (+0200) Subject: plugin testbeds filter: hrn with backslashes X-Git-Tag: myslice-1.1~141 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=d72f939ba81e7e561811045065fce0ea1265a31c;p=myslice.git plugin testbeds filter: hrn with backslashes --- diff --git a/plugins/testbeds/static/js/testbeds.js b/plugins/testbeds/static/js/testbeds.js index f26602e6..b9771270 100644 --- a/plugins/testbeds/static/js/testbeds.js +++ b/plugins/testbeds/static/js/testbeds.js @@ -135,7 +135,7 @@ value = this.dataset['platform']; // handle the hrn that include . in their name (has to be in sync with the data from SFA) - value = value.replace(/\./g,"\\."); + //value = value.replace(/\./g,"\\."); key = "network_hrn"; op = "included"; return $(this).hasClass('active') ? self._addFilter(key, op, value) : self._removeFilter(key, op, value);