{"version":3,"file":"blog.js","names":["$","change","selectedCategory","this","val","urlPrefix","window","location","href","baseUrl","keydown","e","charCode","keyCode","click","searchText","goToUrl","encodeURIComponent","pathname","search"],"sources":["blog.js"],"mappings":"AAAAA,GAAE,WACDA,EAAE,aAAaC,QAAO,WACrB,IAAIC,EAAmBF,EAAEG,MAAMC,MACP,IAApBF,IACHA,EAAmBG,WAEpBC,OAAOC,SAASC,KAAOC,QAAUP,CAClC,IAEAF,EAAE,eAAeU,SAAQ,SAAUC,GAEvB,KADDA,EAAEC,UAAYD,EAAEE,SAAW,IAEpCb,EAAE,cAAcc,OAClB,IAEAd,EAAE,cAAcc,OAAM,WACrB,IAAIZ,EAAmBF,EAAE,aAAaI,MACd,IAApBF,IACHA,EAAmBG,WACpB,IAAIU,EAAaf,EAAE,eAAeI,MAC9BY,EAAUP,QAAUP,GAAkC,IAAda,EAAmB,eAAiBE,mBAAmBF,GAAc,IAC7GT,OAAOC,SAASW,SAAWZ,OAAOC,SAASY,QAAUH,IACxDV,OAAOC,SAASC,KAAOQ,EACzB,GACD","sourcesContent":["$(function () {\r\n\t$(\"#Category\").change(function () {\r\n\t\tvar selectedCategory = $(this).val();\r\n\t\tif (selectedCategory == \"\")\r\n\t\t\tselectedCategory = urlPrefix;\r\n\r\n\t\twindow.location.href = baseUrl + selectedCategory;\r\n\t});\r\n\r\n\t$(\"#search-box\").keydown(function (e) {\r\n\t\tvar key = e.charCode || e.keyCode || 0;\r\n\t\tif (key == 13)\r\n\t\t\t$(\"#search-go\").click();\r\n\t});\r\n\r\n\t$(\"#search-go\").click(function () {\r\n\t\tvar selectedCategory = $(\"#Category\").val();\r\n\t\tif (selectedCategory == \"\")\r\n\t\t\tselectedCategory = urlPrefix;\r\n\t\tvar searchText = $(\"#search-box\").val();\r\n\t\tvar goToUrl = baseUrl + selectedCategory + (searchText != \"\" ? \"?SearchText=\" + encodeURIComponent(searchText) : \"\");\r\n\t\tif (window.location.pathname + window.location.search != goToUrl)\r\n\t\t\twindow.location.href = goToUrl;\r\n\t});\r\n});"]}