Sha256: 93f8dc441063ad205c75b098782a620e71612a58eeb467d9bcfea3d1bf4aa2d6

Contents?: true

Size: 1.01 KB

Versions: 9

Compression:

Stored size: 1.01 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
*/

// Start Closure
(function(window, undefined) {
	
	var
		jQuery = window.alohaQuery, $ = jQuery,
		GENTICS = window.GENTICS,
		Aloha = window.Aloha;

	/**
	 * register the plugin with unique name
	 */
	Aloha.Hints = new (Aloha.Plugin.extend({
		_constructor: function(){
			this._super('hints');
		},
	
		/**
		 * Configure the available languages
		 */
		languages: ['en', 'de'],
		
		/**
		 * Initialize the plugin and set initialize flag on true
		 */
		init: function () {	
			$('body').bind('aloha',function (e) {
				// attach hint
				Aloha.editables[0].obj.poshytip({
					content: 'Move your mouse and click in the yellow outlined areas to start editing.',
					className: 'tip-twitter',
					showTimeout: 1,
					alignTo: 'target',
					alignX: 'left',
					alignY: 'center',
					offsetX: 15
				}).poshytip('show');
			});
	
		}
		
	}))();
})(window);

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
locomotive-aloha-rails-0.20.1.5 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js
aloha-rails-0.0.2 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js
free_text-0.0.3 app/assets/javascripts/aloha-0.10.0/plugins/extra/hints/src/hints.js
locomotive-aloha-rails-0.20.1.4 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js
locomotive-aloha-rails-0.20.1.3 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js
locomotive-aloha-rails-0.20.1.2 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js
locomotive-aloha-rails-0.20.1.1 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js
aloha-rails-0.0.1 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js
locomotive-aloha-rails-0.20.1 vendor/assets/javascripts/aloha/plugins/extra/hints/src/hints.js