Update position for autocomplete on nave search
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 20 Feb 2018 19:05:26 +0000 (14:05 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 20 Feb 2018 19:05:26 +0000 (14:05 -0500)
use left instead of right

views/admin/events/list.html

index a34f5bb..6a8ba1d 100644 (file)
                     <td class="glm-nowrap">
                         {$e.status.name}
                     </td>
-                    <td>                             
+                    <td>
                         {$e.firstDate}
                     </td>
                     <td>
              $( "#glmEventsSearch" ).autocomplete({
                  source: availableTags,
                  html: true,
-                 position: { my : "right top", at: "right bottom" },
+                 position: { my : "left top", at: "left bottom" },
                  select: function( event, ui ) {
                      var eventID = ui.item.id;
                      window.location.replace("{$adminUrl}?page=glm-members-admin-menu-events-index&glm_action=list&option=edit&event=" + eventID );
         });
     </script>
 
-          
+
 {include file='admin/footer.html'}