Subversion Repositories Applications.papyrus

Rev

Rev 1701 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1701 Rev 1704
Line 18... Line 18...
18
	var e = document.getElementById('<?php echo HASHCASH_FORM_ID; ?>');
18
	var e = document.getElementById('<?php echo HASHCASH_FORM_ID; ?>');
19
    e.appendChild(inp);
19
    e.appendChild(inp);
20
}
20
}
Line 21... Line 21...
21
 
21
 
22
function addVerbage(){
22
function addVerbage(){
23
	var e = getElementsByClass('<?php echo HASHCASH_FORM_CLASS; ?>');
23
	var e = document.getElementById('<?php echo HASHCASH_FORM_CLASS; ?>');
24
	var p = document.createElement('p');
24
	var p = document.createElement('p');
25
	p.innerHTML = '<?php echo str_replace("'", "\'", hashcash_verbage()); ?>';
25
	p.innerHTML = '<?php echo str_replace("'", "\'", hashcash_verbage()); ?>';
26
	e[0].appendChild(p);
26
	e.appendChild(p);
Line 27... Line 27...
27
}
27
}
28
 
28
 
29
function <?php echo $fn_enable_name;?>(){
29
function <?php echo $fn_enable_name;?>(){