Ignore:
Timestamp:
01/04/14 15:55:49 (11 years ago)
Author:
tose
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/js/function.js

    r17482 r17483  
    33
    44var currentDate;
     5var count;
    56
    67function GetDate(d,m,y)
    78{
    89        currentDate = y+'-'+m+'-'+d;
     10        count = 1;
    911        $('document').ready(function(){
    1012                        var Gdate = y+'-'+m+'-'+d;
    1113                        $('#save').click(function(){
    12                                 if($('#save').val()=='SAVE')
     14                                if(($('#save').val()=='SAVE') && count==1)
    1315                                {
     16                                        count = 0;
    1417                                        Gdate = currentDate;
    1518                                        alert("Save: " + Gdate);
     
    2730                                        });
    2831                                }
    29                                 else
     32                                else if(($('#save').val()=='SAVE') && count==1)
    3033                                {
     34                                        count = 0;
    3135                                        Gdate = currentDate;
    3236                                        alert("Update: " + Gdate);
Note: See TracChangeset for help on using the changeset viewer.