Changeset 2968
- Timestamp:
- 08/06/10 02:06:01
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webuser/webapp/resources/demoskins/themes/bedeworkTheme/javascript/bedeworkScheduling.js
r2967 r2968 1072 1072 // call the server and format the results into an array "items" 1073 1073 $.getJSON(addrBookUrl, req, function(data) { 1074 var acResults = data.microformats.vcard; 1074 var acResults; 1075 if (data.microformats != undefined && data.microformats.vcard != undefined) { 1076 acResults = data.microformats.vcard; 1077 } 1075 1078 var items = []; 1076 1079 $.each(acResults, function(i,entry) {
