diff options
author | Jagua | 2015-02-11 22:13:16 +0900 |
---|---|---|
committer | Jagua | 2015-02-11 22:13:16 +0900 |
commit | ba6103661a2807c0e615e28a4566fb27537debd3 (patch) | |
tree | 6cbc1d416c4f40ae56a182b9d647573e08e64df4 | |
parent | a557f854756a9fa516ac7521149456f46a8f38eb (diff) | |
download | vimperator-plugins-ba6103661a2807c0e615e28a4566fb27537debd3.tar.bz2 |
fix youtube title
-rw-r--r-- | stella.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1020,7 +1020,7 @@ Thanks: }, get title () - content.document.title.replace(/^YouTube - /, ''), + content.document.title.replace(/- YouTube$/, ''), get totalTime () parseInt(this.player.getDuration()), @@ -1156,7 +1156,7 @@ Thanks: }, get title () - content.document.title.replace(/^YouTube - /, ''), + content.document.title.replace(/ - YouTube$/, ''), fetch: function (filepath) { // all(1080p,720p,480p,360p) -> 37, 22, 35, 34, 5 |