Changeset 1333


Ignore:
Timestamp:
Jan 5, 2011, 1:31:21 PM (12 years ago)
Author:
work@…
Message:
  • updating to ajaxflow 0.1.12
  • changed 'please wait' behaviour conform ajaxflow 0.1.12
Location:
trunk
Files:
1 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/application.properties

    r1329 r1333  
    11#Grails Metadata file
    2 #Tue Jan 04 13:44:33 CET 2011
     2#Wed Jan 05 13:27:00 CET 2011
    33app.build.display.info=0
    44app.build.svn.revision=1079
     
    99app.servlet.version=2.4
    1010app.version=0.6.1
    11 plugins.ajaxflow=0.1.10
     11plugins.ajaxflow=0.1.12
    1212plugins.crypto=2.0
    1313plugins.db-util=0.4
     
    1717plugins.jquery=1.4.4
    1818plugins.jumpbar=0.1.4
    19 plugins.mail=1.0-SNAPSHOT
     19plugins.mail=0.9
    2020plugins.oauth=0.10
    2121plugins.searchable=0.5.5.1
  • trunk/grails-app/conf/Config.groovy

    r1330 r1333  
    243243grails.views.javascript.library = "jquery"
    244244
     245// see http://jira.codehaus.org/browse/GRAILSPLUGINS-2711
     246jquery.version = "1.4.4"
     247
    245248// Needed for the Spring Security Core plugin:
    246249grails.plugins.springsecurity.userLookup.userDomainClassName = 'dbnp.authentication.SecUser'
     
    287290        }
    288291}
    289 
    290 // see http://jira.codehaus.org/browse/GRAILSPLUGINS-2711
    291 jquery.version = "1.4.4"
  • trunk/grails-app/views/studyWizard/common/_please_wait.gsp

    r1319 r1333  
    1616%>
    1717<div id="ajaxFlowWait" class="ajaxFlow" style="display:none;">
    18         <span class="wait">
    19                 <span class="title">Please Wait...</span>
    20                 <span class="spinner"></span>
     18        <span class="waitBackground"></span>
     19        <span class="waiter">
     20                <span class="wait">
     21                        <span class="title">Please Wait...</span>
     22                        <span class="spinner"></span>
     23                </span>
    2124        </span>
    2225</div>
  • trunk/web-app/css/ajaxflow.css

    r1319 r1333  
    136136
    137137/** START :: please wait **/
    138 .ajaxFlow .wait { }
    139 .ajaxFlow .wait .title {
     138.ajaxFlow .waitBackground {
     139        background-color: black;
     140        width: 100%;
     141        height: 100%;
     142        position: fixed;
     143        z-index: 100000;
     144        top: 0px;
     145        left: 0px;
     146
     147        filter: alpha(opacity:0.6);
     148        KHTMLOpacity: 0.6;
     149        MozOpacity: 0.6;
     150        -khtml-opacity:.60;
     151        -ms-filter:"alpha(opacity=60)";
     152        -moz-opacity:.60;
     153        filter:alpha(opacity=60);
     154        opacity:.60;
     155}
     156
     157.ajaxFlow .waiter {
     158        width: 100%;
     159        height: 100%;
     160        position: fixed;
     161        z-index: 100001;
     162        top: 0px;
     163        left: 0px;
     164}
     165
     166.ajaxFlow .waiter .wait {
     167        display: inline-block;
     168        zoom: 1; /* IE 6 & 7 hack */
     169        *display: inline; /* IE 6 & 7 hack */
     170        width: 100%;
     171        position:relative;
     172        top: 40%;
     173        left: 25%;
     174        width: 50%;
     175        height: 100px;
     176        background-color: white;
     177        z-index: 100001;
     178        -moz-border-radius: 15px;
     179        border-radius: 15px;
     180}
     181.ajaxFlow .waiter .wait .title {
    140182    color: #006dba;
    141183    font-weight: normal;
    142184    font-size: 24px;
    143185    margin: .8em 0 .3em 0;
    144     display: block;
     186    display: inline-block;
     187        zoom: 1; /* IE 6 & 7 hack */
     188        *display: inline; /* IE 6 & 7 hack */
    145189    width: 100%;
    146190    text-align: center;
    147191}
    148 .ajaxFlow .wait .spinner {
    149         background: url(../images/ajaxflow/spinner-large.gif) no-repeat center top;
     192.ajaxFlow .waiter .wait .spinner {
     193        background: url(../images/ajaxflow/ajax-loader.gif) no-repeat center top;
    150194        margin-top: 0px;
    151195        margin-bottom: 0px;
Note: See TracChangeset for help on using the changeset viewer.