Эх сурвалжийг харах

debug: log newly created dom node & uid of inputResources

Fabian Peter Hammerle 4 жил өмнө
parent
commit
d43adf22c1
2 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 1 1
      cache.manifest
  2. 1 1
      resource.js

+ 1 - 1
cache.manifest

@@ -1,5 +1,5 @@
 CACHE MANIFEST
-#V 20201125234352
+#V 20201128184706
 
 CACHE:
 common.js

+ 1 - 1
resource.js

@@ -479,7 +479,6 @@ function ResourceCalDAVList()
 		}
 
 		// insert the resource to interface
-		console.log('insert inputResource with uid=' + inputResource.uid);
 		var newElement = $('#ResourceCalDAV'+todoString+'ListTemplate').find('.resourceCalDAV'+todoString+'_item').clone().wrap('<div>');
 		var par=inputResource.uid.split('/');
 		if(inputResource.permissions.read_only)
@@ -511,6 +510,7 @@ function ResourceCalDAVList()
 		if(typeof globalCalendarColorPropertyXmlns== 'undefined' || globalCalendarColorPropertyXmlns== null || globalCalendarColorPropertyXmlns==='' || globalCalendarColorPropertyXmlns!==false)
 			bindColorPickerClick(newElement.find('.resourceCalDAVColor'));
 		$('#ResourceCalDAV'+todoString+'List').children().eq(insertIndex+headerMiss).after(newElement);
+		console.log('inserted inputResource with uid=' + inputResource.uid, newElement)
 		if(inputResource.makeLoaded)
 		{
 			var resDOMHeader=newElement.prevUntil('.resourceCalDAV'+todoString+'_header').last().prev();