diff --git a/e107_handlers/form_handler.php b/e107_handlers/form_handler.php index 4b2dada40..6182c7a6c 100644 --- a/e107_handlers/form_handler.php +++ b/e107_handlers/form_handler.php @@ -1098,7 +1098,7 @@ class e_form } $options['title'] = $title;//shorthand - return "get_attributes($options, $name, $value)." />"; + return "get_attributes($options, $name, $value)." />"; } /** @@ -1404,8 +1404,8 @@ class e_form { $columnsArray = array_filter($columnsArray); $text = " -
- " +
+ " ."select columns" ."
@@ -1429,7 +1429,7 @@ class e_form // has issues with the checkboxes. $text .= "
- ".$this->admin_button('etrigger_ecolumns', LAN_SAVE, 'update')." + ".$this->admin_button('etrigger_ecolumns', LAN_SAVE, 'other')."
@@ -1696,7 +1696,8 @@ class e_form $value .= "".ADMIN_SORT_ICON." "; } - $value .= "".LAN_EDIT.""; + $value .= " + ".LAN_EDIT.""; $delcls = vartrue($attributes['noConfirm']) ? ' no-confirm' : ''; if(varset($parms['deleteClass'])) diff --git a/e107_web/js/core/admin.jquery.js b/e107_web/js/core/admin.jquery.js index f2e60ccc9..e267079a7 100644 --- a/e107_web/js/core/admin.jquery.js +++ b/e107_web/js/core/admin.jquery.js @@ -13,7 +13,13 @@ $(document).ready(function() return; } - $(this).tooltip({opacity:1.0,fade:true}); + var pos = $(this).attr('data-placement'); + if(!pos) + { + pos = 'top'; + } + + $(this).tooltip({opacity:1.0,fade:true, placement: pos}); // $(this).css( 'cursor', 'pointer' ) });