Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
787696 - removed incorrectly calling _() in javascript
  • Loading branch information
thomasmckay committed Mar 1, 2012
1 parent ede3cf9 commit 7588494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/public/javascripts/role_sliding_tree.js
Expand Up @@ -436,7 +436,7 @@ KT.roles.permissionWidget = function(){

progress_bar.setProgress(100);

$('#permission_widget_header').html(i18n.edit_permission_header + ' ' + roles_breadcrumb[current_organization].name + ' - ' + _(permission.name));
$('#permission_widget_header').html(i18n.edit_permission_header + ' ' + roles_breadcrumb[current_organization].name + ' - ' + permission.name);
$('#permission_widget_header').addClass('one-line-ellipsis');
} else {
button.children('span').html(i18n.edit_permission);
Expand Down

0 comments on commit 7588494

Please sign in to comment.