2 improvements
-
Hi, Dear Authors,
Can I ask you about 2 improvements?
1. Search form
On mobile devices, the search form fields are located one below the other. The select2 script itself calculates where to place the modal. If the fields are located at the bottom of the screen, the modal will be oriented upwards and overlap the search field. When you click on the field, a modal window opens and immediately closes, because the click triggers two events: opening the modal window by clicking on the search field and closing it by clicking on the modal window, which at that moment already overlaps the search field.
I solved this problem with the following script, but I think there is a smarter solution.
jQuery(function(e){e(“.select2-container”).bind(“vclick click”,function(){e(this).removeClass(“select2-container–above”),e(this).addClass(“select2-container–below”);return false;})});
2. Listing thumbnail size
You actually offer 2 sizes of thumbnails: medium and full. In my case, loading 20 1024-pixel images on a page would slow down page loading and cause Google criticism. The second option – medium thumbnail size – looks blurry. By the way, your demo is the same. Previously, you had a filter that I could set a custom listing thumbnail size, now this filter is not.
You could specify all registered sizes in the thumbnail size drop-down list. Then I could choose which size is more suitable so that the size of the thumbnail is not large and the thumbnail does not look blurry.
Thank you very much for your great work!`
- The topic ‘2 improvements’ is closed to new replies.