まさかリスト

語感良くない?

2015-12-01から1ヶ月間の記事一覧

Smartyを3.1.27から3.1.28アプデにしたらFatal error: Uncaught --> Smarty: Unable to load template file 〇〇.tpl'' <-- が出た話

Smartyを3.1.27から3.1.28アプデにしたら Fatal error: Uncaught --> Smarty: Unable to load template file 'index.tpl' <--が出て困りました。 原因 クラス変数に値を直接代入していた。 $smarty->template_dir = '/templates'; $smarty->compile_dir = '/…

jQueryでダブルクリックとクリックを区別したい

題名の通りjQueryでダブルクリックとクリックを区別したい時にハマったのでメモ。 ダブルクリックはclickイベントが先に実行されるので、ダブルクリックとクリックでそれぞれ別々の処理ができません。 しかし、解決策がありました。 stackoverflow.com $(セ…