Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/LimeSurvey/LimeSurvey
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Mar 16, 2016
2 parents ef6068f + 711ca00 commit 4a1f06a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/admin/emailtemplates.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ $(document).ready(function(){
var newval = $(this).attr('data-value');
var target = $('#' + $(this).attr('data-target'));
$(target).val(newval);
updateCKeditor($(this).attr('data-target'),newval);
try{
updateCKeditor($(this).attr('data-target'),newval);
}
catch(err) {}
});

});
Expand Down

0 comments on commit 4a1f06a

Please sign in to comment.