소스 검색

https://assistance.opentalent.fr/browse/V8-2384

Olivier Massot 4 년 전
부모
커밋
241e49b6a0
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      ot_templating/Resources/Public/assets/Classic/script/structures.js

+ 5 - 0
ot_templating/Resources/Public/assets/Classic/script/structures.js

@@ -262,6 +262,11 @@ $(document).ready(function() {
             }
         });
 
+        sortKeys = function (x) {
+            return x.addressCity.toLowerCase() + x.name.toLowerCase();
+        }
+        results.sort((a, b) => sortKeys(a).localeCompare(sortKeys(b)));
+
         // ** Show the results for the current page
         let index = 0;