Chaton > Archives > 2009/07/08

2009/07/08 02:45:16 UTCえんどう
#
07-08 11:43:26.461: DEBUG/WebCore(2964): Console: SyntaxError: Parse error line: 225 source: file:///android_asset/chaton.js
#
なんだろう。
#
222  function checkImageSize(img) {
   223      var img = $(img);
   224      if (img.width > img.height) {
   225          if (img.width > @@img-size-limit@@) img.addClassName('wshrunk');
   226      } else {
   227          if (img.height > @@img-size-limit@@) img.addClassName('hshrunk');
   228      }
   229      img.style.display = 'inline';
   230      img.removeClassName('hide-while-loading');
   231      if (need_scroll) scrollToBottom();
   232  }
2009/07/08 03:52:17 UTCyasuyuki
#
test
2009/07/08 13:05:01 UTCshiro
#
@えんどう @@image-size-limit@@のところはbuild-siteで置換されるはずなんだけど、ちゃんと置換されてます?
2009/07/08 21:48:32 UTCえんどう
#
あーそうか、接続先のchaton.xxx.jpを読まないとだめなのか。
#
http://code.google.com/p/duvet/source/browse/trunk/Duvet/assets/client.html
#
上記を見てお分かりの通り、Chatonが返すPC用のHTMLをそのまま使うわけにいかないので、ローカルにあるHTMLを読んでDOMを書き換えています。
2009/07/08 21:55:50 UTCえんどう
#
IFRAME使ってる訳じゃないからscrollToBottomもそのままは動かないだろうなあ