diff options
author | anekos | 2011-09-07 15:32:37 +0900 |
---|---|---|
committer | anekos | 2011-09-07 15:32:37 +0900 |
commit | 9344b1c10e4a86712af92cef6adad9971f62a719 (patch) | |
tree | 4bb9308765fa52050db9f424530f4448b5fa6a5a /google-plus-commando.js | |
parent | bb7ca55d1b3a23eaa8529938fe691def8c223198 (diff) | |
download | vimperator-plugins-9344b1c10e4a86712af92cef6adad9971f62a719.tar.bz2 |
cssRules も export
Diffstat (limited to 'google-plus-commando.js')
-rw-r--r-- | google-plus-commando.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/google-plus-commando.js b/google-plus-commando.js index c18c64a..c794565 100644 --- a/google-plus-commando.js +++ b/google-plus-commando.js @@ -305,7 +305,7 @@ let g:gplus_commando_map_menu = "m" // Selector {{{ - const [S, X] = (function () { + const [S, X, R] = (function () { function role (name, prefix) ((prefix || '') + '[role="' + name + '"]'); @@ -471,7 +471,7 @@ let g:gplus_commando_map_menu = "m" onceAll(selector, '.MEOW_MEOW_MEOW'); - return [selector, xpath]; + return [selector, xpath, cssRules]; })(); // }}} @@ -1707,6 +1707,7 @@ let g:gplus_commando_map_menu = "m" __context__.command = Commands; __context__.element = Elements; __context__.selector = S; + __context__.rule = R; __context__.linkDetector = LinkDetector; // }}} |