Created
June 8, 2015 07:05
-
-
Save leaysgur/bc602fa75508429e1550 to your computer and use it in GitHub Desktop.
ShibuyaTSUTAYA在庫検索
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var isItemPage = location.pathname.split('/')[1] === 'item'; | |
if (isItemPage) { | |
var hasParam = location.search.length !== 0; | |
var addParam = hasParam ? '&storeId=2312' : '?storeId=2312'; | |
location.replace(location.href + addParam); | |
} | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment