Ignore:
Timestamp:
08/04/11 11:20:53 (13 years ago)
Author:
Daniela Dorner
Message:
key2 can be empty now
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/db_po/po.js

    r11600 r11771  
    561561    if (!key1)
    562562        alert("Please insert key1!");
    563     if (!key2)
    564         alert("Please insert key2!");
    565563    if (!val)
    566564        alert("Please insert value!");
    567     if (!val || !descr || !key1 || !key2)
     565    if (!val || !descr || !key1)
    568566        return;
    569567    if (index==0)
     
    650648        {
    651649            alert("Maximum is not a float.");
     650            return;
     651        }
     652        if (type=='float' && parseFloat(max)<parseFloat(min))
     653        {
     654            alert("Maximum cannot be smaller than minimum.");
     655            return;
     656        }
     657        if (type=='int' && parseInt(max)<parseInt(min))
     658        {
     659            alert("Maximum cannot be smaller than minimum.");
    652660            return;
    653661        }
Note: See TracChangeset for help on using the changeset viewer.