Sha256: 15ee19c4a8bd27e21eb52edddfdca1d5b054aecad7903f3a5855194b943a68c6
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
/*! * Aloha Editor * Author & Copyright (c) 2010 Gentics Software GmbH * aloha-sales@gentics.com * Licensed unter the terms of http://www.aloha-editor.com/license.html */ define( ['aloha/jquery', 'aloha/registry'], function( jQuery, Registry ) { /** * Create an contentHandler from the given definition. Acts as a factory method * for contentHandler. * * @param {Object} definition */ return new ( Registry.extend({ createHandler: function( definition ) { if ( typeof definition.handleContent != 'function' ) { throw 'ContentHandler has no function handleContent().'; } var AbstractContentHandler = Class.extend({ handleContent: function( content ) { // Implement in subclass! } }, definition); return new AbstractContentHandler(); }, handleContent: function ( content, options ) { var handler, handlers = this.getEntries(); if ( typeof options.contenthandler === 'undefined') { options.contenthandler = []; for ( handler in handlers ) { if ( handlers.hasOwnProperty(handler) ) { options.contenthandler.push(handler); } } } for ( handler in handlers ) { if ( handlers.hasOwnProperty(handler) ) { if (jQuery.inArray( handler, options.contenthandler ) < 0 ) { continue; } if ( typeof handlers[handler].handleContent === 'function') { content = handlers[handler].handleContent( content, options ); } else { console.error( 'A valid content handler needs the method handleContent.' ); } } } return content; } }))(); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
free_text-0.0.3 | app/assets/javascripts/aloha-0.10.0/lib/aloha/contenthandlermanager.js |