# css-javascript-toolbox/8.0.3/framework/js/ace/pluggable/pluggable.js

CSS &amp; JavaScript Toolbox, version 8.0.3. 44 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.3/code/framework/js/ace/pluggable/pluggable.js
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.3/raw/framework/js/ace/pluggable/pluggable.js
- Modified: 2014-05-06T16:47:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.3/code/framework/js/ace/pluggable/pluggable.js#L10-L20`.

```javascript
/**
* 
*/

/**
* 
*/
(function($) {
	
	/**
	* put your comment there...
	* 
	* @type Object
	*/
	var ACEPluggable = {
		
		/**
		* put your comment there...
		* 
		* @type Object
		*/
		plugins : {},
		
		/**
		* Create ACE Plugins system.
		* 
		* @returns void
		*/
		init : function() {
			// Couldnt find ace object!
			if (ace == undefined) {
				throw {code : 0x0001, msg: "Error while initializing ACEPluggabel class. ACE is not defined!!\nPlease check your Javascript loading order"};
			}
			else { // ace found!
				// For now just assign ACEPluggable object reference.
				ace.pluggable = this;
			}
		}
		
	}; // End pluggable prototype.
	
	// Intialize!
	ACEPluggable.init();	
})(jQuery);
```
