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 です。

History

  1. 2012/03/27 23:51:38 - 2012-03-27
  2. 2012/03/27 14:45:49 - 2012-03-27
  3. 2012/03/27 13:13:01 - 2012-03-27
  4. 2012/03/27 13:05:04 - 2012-03-27
  5. 2012/03/27 12:42:41 - 2012-03-27