Ignore:
Timestamp:
2015-03-06T17:03:47+13:00 (9 years ago)
Author:
davidb
Message:

Changes in refining the project to be demoed at the end-of-summer presentations. Note this commit was made after the event.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/nz-flag-design/trunk/main-form/iterative-design.html

    r29740 r29767  
    44        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>   
    55        <meta name="viewport" content="width=device-width, initial-scale=1"/>
     6
     7    <!-- jQuery -->
     8    <script src="lib/jquery-1.11.1.min.js"></script>
    69
    710        <title>Iterative Design</title>
     
    6669
    6770            <script>
    68                 var activatedAccordion    = false;
     71                var activatedAccordion      = false;
    6972                var activatedSVGEditorFrame = false;
    7073
     
    9093
    9194                        // Look up jsession id; if not present fall back to use a timestamp
    92                         var jsession_id = $.cookie('JSESSIONID') || new Date().getTime();
     95                        //var jsession_id = $.cookie('JSESSIONID') || new Date().getTime();
     96                        var jsession_id = $.cookie('JSESSIONID') + "-" + new Date().getTime();
    9397                        console.log("jsession id = " + jsession_id);
    9498                        var imageFilename = "flag-" + jsession_id + ".png";
     
    186190
    187191                function activateAccordion() {
     192                    console.log("activateAccordion()");
     193
    188194                    var la_x_dim = $(window).width() * 0.70;
    189195                    var la_y_dim = $(window).height() * 0.67;
     
    198204                            containerHeight : la_y_dim,
    199205                            onTriggerSlide : function() {
     206                                console.log("onTriggerSlide: this = " + this);
    200207                                console.log("onTriggerSlide: id = " + this[0].id);
    201208                                if (this[0].id == "render-3d-div") {
Note: See TracChangeset for help on using the changeset viewer.