Sha256: 9608e40716d00a692e7c0efdbfcb8c9ccf1840ba71a9649cbfaab16747c5b634

Contents?: true

Size: 1.58 KB

Versions: 8

Compression:

Stored size: 1.58 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', 'aloha/jquery', 'aloha/contenthandlermanager'],
function(Aloha, jQuery, ContentHandlerManager) {
	

	var
		GENTICS = window.GENTICS;

	/**
	 * Register the generic content handler
	 */
	var FormatlessPasteHandler = ContentHandlerManager.createHandler({
		
		/**
		 * Enable/Disable formatless pasting option 
		 */
		enabled: false,

		
		/**
		 * Handle the pasting. Remove all unwanted stuff.
		 * @param content
		 */
		handleContent: function( content ) {
			if ( typeof content === 'string' ){
				content = jQuery( '<div>' + content + '</div>' );
			} else if ( content instanceof jQuery ) {
				content = jQuery( '<div>' ).append(content);
			}
			// If we find an aloha-block inside the pasted content,
			// we do not modify the pasted stuff, as it most probably
			// comes from Aloha and not from other sources, and does
			// not need to be cleaned up.
			if ( content.find('.aloha-block').length > 0 ) {
				return;
			};

			// remove formattings
			if ( this.enabled ) {
				this.removeFormatting( content );
			}
				
			return content.html();
		},

		/**
		 * Remove formatting
		 * @param jqPasteDiv
		 */
		removeFormatting: function( jqPasteDiv ) {
			var formatting_elements = this.strippedElements;

			// find all formattings we will transform
			jqPasteDiv.find( formatting_elements.join(",")).each(function() {
				jQuery(this).contents().unwrap();
			});
		}
  });

	return FormatlessPasteHandler;
});

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
locomotive-aloha-rails-0.20.1.5 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js
aloha-rails-0.0.2 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js
locomotive-aloha-rails-0.20.1.4 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js
locomotive-aloha-rails-0.20.1.3 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js
locomotive-aloha-rails-0.20.1.2 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js
locomotive-aloha-rails-0.20.1.1 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js
aloha-rails-0.0.1 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js
locomotive-aloha-rails-0.20.1 vendor/assets/javascripts/aloha/plugins/extra/formatlesspaste/lib/formatlesshandler.js