mirror of
				https://github.com/flynx/ImageGrid.git
				synced 2025-10-31 11:20:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| /**********************************************************************
 | |
| * 
 | |
| * Base architecture:
 | |
| *
 | |
| * 	Two trees are maintained:
 | |
| * 		- no-gui
 | |
| * 		- gui
 | |
| *
 | |
| * 	no-gui:
 | |
| * 		aggregates:
 | |
| * 			data
 | |
| * 			images
 | |
| * 		defines universal set of actions to manage and control state
 | |
| *
 | |
| * 	gui:
 | |
| * 		extends no-gui and adds:
 | |
| * 			ribbons
 | |
| * 		extends and defines a set of gui control and state actions
 | |
| *
 | |
| *
 | |
| **********************************************************************/
 | |
| ((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
 | |
| (function(require){ var module={} // make module AMD/node compatible...
 | |
| /*********************************************************************/
 | |
| 
 | |
| var features = require('features/all')
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| 
 | |
| // NOTE: this is here to simplify importing...
 | |
| var ImageGridFeatures =
 | |
| module.ImageGridFeatures = 
 | |
| 	features.ImageGridFeatures
 | |
| 
 | |
| 
 | |
| 
 | |
| /**********************************************************************
 | |
| * vim:set ts=4 sw=4 :                               */ return module })
 |