Don't use single quotes to wrap translated strings in javascript in case
the translation contains an apostrophe. Closes #1942.
This commit is contained in:
parent
451525973f
commit
a8c7d1c4ce
2 changed files with 3 additions and 3 deletions
|
@ -76,7 +76,7 @@ page << <<EOJ
|
|||
}
|
||||
|
||||
function startDrag() {
|
||||
$("browse_select_box").innerHTML='#{I18n.t('browse.start_rjs.drag_a_box')}';
|
||||
$("browse_select_box").innerHTML="#{I18n.t('browse.start_rjs.drag_a_box')}";
|
||||
|
||||
browseBoxControl.activate();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue