/lenasys/0.1

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/0.1

« back to all changes in this revision

Viewing changes to trunk/DuggaSys/quizSystem/pageframe.html.php

  • Committer: galaxyAbstractor
  • Date: 2013-03-28 15:59:22 UTC
  • mfrom: (4.10.2 lenasys)
  • mto: (4.7.12 GammaBear)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: galaxyabstractor@gmail.com-20130328155922-yh5676lqrteke4do
Merged Daniels code

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
                                        $(this).find("#scrolly").val($(document).scrollTop());
19
19
                                        //var val = $("input[type=submit][clicked=true]").val()
20
20
                                });
21
 
                                $('.confirm').click(function(){
 
21
                                $('.confirm').click(function() {
22
22
                                        var answer = confirm('Are you sure?');
23
23
                                        return answer // answer is a boolean
24
24
                                });  
25
25
                                <?php 
26
 
                                if(isset($_POST['scrolly'])){ 
 
26
                                if(isset($_POST['scrolly'])) { 
27
27
                                        echo '$(document).scrollTop('.$_POST['scrolly'].');';
28
28
                                        //echo 'alert("setting scrolly");';
29
29
                                }