mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +00:00 
			
		
		
		
	Remove debug messages
This commit is contained in:
		@@ -1,19 +1,16 @@
 | 
			
		||||
var ResourceDisplays = {};
 | 
			
		||||
 | 
			
		||||
ResourceDisplays.autoInit = () => {
 | 
			
		||||
  console.log('ResourceDisplays.autoInit');
 | 
			
		||||
  for (let propertyName in ResourceDisplays) {
 | 
			
		||||
    let property = ResourceDisplays[propertyName];
 | 
			
		||||
    // Call autoInit of all properties that are subclasses of `ResourceDisplays.BaseDisplay`.
 | 
			
		||||
    // This does not include `ResourceDisplays.BaseDisplay` itself.
 | 
			
		||||
    if (property.prototype instanceof ResourceDisplays.BaseDisplay) {
 | 
			
		||||
      console.log(property);
 | 
			
		||||
      // Check if the static `htmlClass` property is defined.
 | 
			
		||||
      if (property.htmlClass === undefined) {return;}
 | 
			
		||||
      // Gather all HTML elements that have the `this.htmlClass` class
 | 
			
		||||
      // and do not have the `no-autoinit` class.
 | 
			
		||||
      let displayElements = document.querySelectorAll(`.${property.htmlClass}:not(.no-autoinit)`);
 | 
			
		||||
      console.log(displayElements);
 | 
			
		||||
      // Create an instance of this class for each display element.
 | 
			
		||||
      for (let displayElement of displayElements) {new property(displayElement);}
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user