changeset 4171:75bf2d4eb890 rhodecode-2.2.5-gpl

rhodecode.js: use classes btn and btn-mini instead of ui-btn in createInlineAddButton
author Mads Kiilerich <madski@unity3d.com>
date Wed, 02 Jul 2014 19:03:28 -0400
parents 211ded263da9
children 031117f7efab
files rhodecode/public/js/rhodecode.js
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/public/js/rhodecode.js	Wed Jul 02 19:03:28 2014 -0400
+++ b/rhodecode/public/js/rhodecode.js	Wed Jul 02 19:03:28 2014 -0400
@@ -795,7 +795,7 @@
     }
     $tr.find('.add-comment').remove();
     var label = TRANSLATION_MAP['Add another comment'];
-    var $html_el = $('<div class="add-comment"><span class="ui-btn">{0}</span></div>'.format(label));
+    var $html_el = $('<div class="add-comment"><span class="btn btn-mini">{0}</span></div>'.format(label));
     $html_el.click(function(e) {
         injectInlineForm($line_tr);
     });