author | František Kučera <franta-hg@frantovo.cz> |
Fri, 14 Jan 2011 19:04:44 +0100 | |
changeset 168 | 8149f05fe816 |
parent 145 | 0efefbf5f8b6 |
child 179 | 2ed9f3231a28 |
permissions | -rw-r--r-- |
1 var komentare = {};
3 komentare.zobrazFormular = function () {
4 $("#formularKomentuj").toggle();
5 };
7 komentare.nahled = function() {
8 $("#formularKomentuj .vystup").load("komentare", $("#formularKomentuj form").serialize());
9 };
11 komentare.odeslat = function() {
12 $("#formularKomentuj .vystup").load("komentare?odeslat=true", $("#formularKomentuj form").serialize());
13 };