|
@@ -1,6 +1,29 @@
|
|
|
let userAgent;
|
|
|
let isSafari = false;
|
|
|
let browserName;
|
|
|
+
|
|
|
+$('.likeSee__views').click(function() {
|
|
|
+ window.location.href = './index_designerList.html'
|
|
|
+})
|
|
|
+
|
|
|
+$('.likeSee__sort').click(function() {
|
|
|
+ window.location.href = './index_designerList.html?q=dateSort'
|
|
|
+})
|
|
|
+
|
|
|
+function getpathId(){
|
|
|
+ let query = window.location.search.split('?').pop();
|
|
|
+ return query.split('=')[1];
|
|
|
+}
|
|
|
+
|
|
|
+function getQuery() {
|
|
|
+ let query = getpathId();
|
|
|
+ if(query == 'dateSort'){
|
|
|
+ filter = 'dateSort';
|
|
|
+ } else {
|
|
|
+ filter = 'views';
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
window.onload = function(){
|
|
|
//window.scrollBy(0, 1);
|
|
|
if(screen.width >= 901){
|