c..
@@ -5,13 +5,17 @@
* @license MIT License
*/
-if (location.search != '') {
+if(location.search != '') {
location.search = '';
+} else if(location.hash !='') {
+ location.hash = '';
} else {
- if (location.pathname != '/') {
- a = location.pathname.split('/');
- if (a.pop() == '') a.pop();
- location.pathname = a.join('/');
+ if(location.pathname != '/') {
+ a=location.pathname.split('/');
+ if(a[a.length-1]=='') a.pop();
+ a.push('..');
+ a.push('');
+ location.pathname=a.join('/');
} else {
b = location.hostname.split('.');
b.shift();
/*
* @title cd ..
* @description up dir
* @include http://*
* @license MIT License
*/
if(location.search != '') {
location.search = '';
} else if(location.hash !='') {
location.hash = '';
} else {
if(location.pathname != '/') {
a=location.pathname.split('/');
if(a[a.length-1]=='') a.pop();
a.push('..');
a.push('');
location.pathname=a.join('/');
} else {
b = location.hostname.split('.');
b.shift();
location.hostname = b.join('.');
}
}
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。