fix(item): encode hex value in the detail arrow so it works on firefox

fixes #6830
This commit is contained in:
Brandy Carney
2016-06-09 17:28:00 -04:00
parent 8350df0cfc
commit 03986d4ec5
2 changed files with 4 additions and 2 deletions

View File

@ -119,7 +119,9 @@
// --------------------------------------------------
@function url-encode($val) {
@return str-replace($val, " ", "%20");
$spaces: str-replace($val, " ", "%20");
$encoded: str-replace($spaces, "#", "%23");
@return $encoded;
}