Created
July 8, 2013 18:26
-
-
Save bradrice/5951220 to your computer and use it in GitHub Desktop.
replace the colon with unicode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(searchVal.match(/:/g)){ | |
n = searchVal.replace(':', '\\x3A'); | |
$scope.searchObj['filterText'] = n; | |
} else { | |
$scope.searchObj['filterText'] = searchVal; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment