Sha256: 51f8a52dca89db69f8a1e0007c70fe1d268c4e14f38877ab340771133fc3882c

Contents?: true

Size: 376 Bytes

Versions: 3

Compression:

Stored size: 376 Bytes

Contents

var WhowishWordHtmlCreator = WhowishWordCommonCreator.extend({
	
	identity: function() {
		return 'html';
	},
	
	getContent: function() {
		return $w(this.element).html();
	},
	
	setContent: function(content) {
		$w(this.element).html(content);
	},
	
	instantiateAndGetContentHandler: function() {
		return new WhowishWordHtmlHandler(this.element);
	}
  
});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
whowish_word-0.1.6 lib/whowish_word/rails/public/javascripts/6_whowish_word_html_creator.js
whowish_word-0.1.5 lib/whowish_word/rails/public/javascripts/6_whowish_word_html_creator.js
whowish_word-0.1.4 lib/whowish_word/rails/public/javascripts/6_whowish_word_html_creator.js