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:
parent
999c18cae7
commit
b8519e42d6
@ -37,7 +37,8 @@ DataTableCellUI.prototype._render = function() {
|
|||||||
if (r.j == "new") {
|
if (r.j == "new") {
|
||||||
$('<span>').text(cell.v + " (new topic) ").appendTo(divContent);
|
$('<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")
|
.addClass("data-table-recon-action")
|
||||||
.appendTo(divContent).click(function(evt) {
|
.appendTo(divContent).click(function(evt) {
|
||||||
self._doRematch();
|
self._doRematch();
|
||||||
@ -52,7 +53,7 @@ DataTableCellUI.prototype._render = function() {
|
|||||||
|
|
||||||
$('<span> </span>').appendTo(divContent);
|
$('<span> </span>').appendTo(divContent);
|
||||||
$('<a href="javascript:{}"></a>')
|
$('<a href="javascript:{}"></a>')
|
||||||
.text("re-match")
|
.text("re\u2011match")
|
||||||
.addClass("data-table-recon-action")
|
.addClass("data-table-recon-action")
|
||||||
.appendTo(divContent)
|
.appendTo(divContent)
|
||||||
.click(function(evt) {
|
.click(function(evt) {
|
||||||
|
Loading…
Reference in New Issue
Block a user