diff options
| author | drry | 2008-12-22 08:58:06 +0000 | 
|---|---|---|
| committer | drry | 2008-12-22 08:58:06 +0000 | 
| commit | f9dc40f9a3e34ede7f40b7137576243d3dff06f6 (patch) | |
| tree | 4e97348ebd9ac9d75ee8cd8de7a4ce7ae1ba5f4d | |
| parent | 45e00d789c1b25ee82f9630cd1ad8cd2e184243f (diff) | |
| download | vimperator-plugins-f9dc40f9a3e34ede7f40b7137576243d3dff06f6.tar.bz2 | |
 * added some semicolons.
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@27219 d0d07461-0603-4401-acd4-de1884942a52
| -rw-r--r-- | stella.js | 10 | 
1 files changed, 5 insertions, 5 deletions
| @@ -898,7 +898,7 @@ Thanks:      get large () this.player.ext_getVideoSize() === NicoPlayer.SIZE_LARGE,      set large (value) { -        this.player.ext_setVideoSize(value ? NicoPlayer.SIZE_LARGE : NicoPlayer.SIZE_NORMAL) +        this.player.ext_setVideoSize(value ? NicoPlayer.SIZE_LARGE : NicoPlayer.SIZE_NORMAL);          return this.large;      }, @@ -960,7 +960,7 @@ Thanks:      say: function (message) {        liberator.log('stsay'); -      this.sendComment(message) +      this.sendComment(message);      },      // みかんせいじん @@ -1021,11 +1021,11 @@ Thanks:          let info = self.cachedInfo;          if (info.ticket !== undefined)            return; -        let tmpl = '<thread res_from="-1" version="20061206" thread="--thread_id--" />'; +        let tmpl = '<thread res_from="-1" version="20061206" thread="--thread_id--"/>';          let xhr = U.httpRequest(info.flvInfo.ms, U.fromTemplate(tmpl, info.flvInfo)); -        let xml = xhr.responseXML +        let xml = xhr.responseXML;          let r = xml.evaluate('//packet/thread', xml, null, 9, null, 7, null).singleNodeValue; -        info.ticket = r.getAttribute('ticket') +        info.ticket = r.getAttribute('ticket');        }        function sendChat () { | 
