fixing quote escapes

This commit is contained in:
Max Ogden 2011-06-24 22:42:14 -04:00
parent 288b3c2fea
commit 92efb9c3e3
3 changed files with 4 additions and 5 deletions

View File

@ -70,7 +70,6 @@
if (row.value[header]) {
value = row.value[header];
if (typeof(value) == "object") value = JSON.stringify(value);
if (typeof(value) == "string") value = value.replace(/\"/g, '""');
}
cells.push(value);
})

View File

@ -626,7 +626,7 @@ a.column-header-menu {
margin: 0 4px 0 0;
width: 17px;
height: 19px;
background-image: url(../../images/menu-dropdown.png);
background-image: url(images/menu-dropdown.png);
background-repeat: no-repeat;
}
@ -674,7 +674,7 @@ a.data-table-cell-edit {
width: 25px;
height: 16px;
text-decoration: none;
background-image: url(../../images/edit-map.png);
background-image: url(images/edit-map.png);
background-repeat: no-repeat;
visibility: hidden;
}
@ -734,7 +734,7 @@ a.data-table-recon-match, a.data-table-recon-match-similar {
display: block;
width: 16px;
height: 16px;
background-image: url(../../images/checks-map.png);
background-image: url(images/checks-map.png);
background-repeat: no-repeat;
background-position: -16px 0;
text-decoration: none;
@ -757,7 +757,7 @@ a.data-table-star-on, a.data-table-star-off, a.data-table-flag-on, a.data-table-
display: block;
width: 16px;
height: 16px;
background-image: url(../../images/star-flag-map.png);
background-image: url(images/star-flag-map.png);
background-repeat: no-repeat;
text-decoration: none;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB