Use non-breaking hyphens for "re-match" links.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@309 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-03-16 21:01:27 +00:00
parent 999c18cae7
commit b8519e42d6

View File

@ -37,7 +37,8 @@ DataTableCellUI.prototype._render = function() {
if (r.j == "new") {
$('<span>').text(cell.v + " (new topic) ").appendTo(divContent);
$('<a href="javascript:{}">re-match</a>')
$('<a href="javascript:{}"></a>')
.text("re\u2011match")
.addClass("data-table-recon-action")
.appendTo(divContent).click(function(evt) {
self._doRematch();
@ -52,7 +53,7 @@ DataTableCellUI.prototype._render = function() {
$('<span> </span>').appendTo(divContent);
$('<a href="javascript:{}"></a>')
.text("re-match")
.text("re\u2011match")
.addClass("data-table-recon-action")
.appendTo(divContent)
.click(function(evt) {