Sha256: 0a0077daba78e32516c7398ab60f7d2aebab9abb07ff3436dc055bf7c470b406

Contents?: true

Size: 1.16 KB

Versions: 54

Compression:

Stored size: 1.16 KB

Contents

/*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************************************************************/

KindEditor.plugin('clearhtml', function(K) {
	var self = this, name = 'clearhtml';
	self.clickToolbar(name, function() {
		self.focus();
		var html = self.html();
		html = html.replace(/(<script[^>]*>)([\s\S]*?)(<\/script>)/ig, '');
		html = html.replace(/(<style[^>]*>)([\s\S]*?)(<\/style>)/ig, '');
		html = K.formatHtml(html, {
			a : ['href', 'target'],
			embed : ['src', 'width', 'height', 'type', 'loop', 'autostart', 'quality', '.width', '.height', 'align', 'allowscriptaccess'],
			img : ['src', 'width', 'height', 'border', 'alt', 'title', '.width', '.height'],
			table : ['border'],
			'td,th' : ['rowspan', 'colspan'],
			'div,hr,br,tbody,tr,p,ol,ul,li,blockquote,h1,h2,h3,h4,h5,h6' : []
		});
		self.html(html);
		self.cmd.selection(true);
		self.addBookmark();
	});
});

Version data entries

54 entries across 54 versions & 8 rubygems

Version Path
rails_kindeditor-0.3.20 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
loyal_rails_kindeditor-0.0.4 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
loyal_rails_kindeditor-0.0.3 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
loyal_rails_kindeditor-0.0.2 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
loyal_rails_kindeditor-0.0.1 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.19 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.18 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.17 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.16 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.15 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.14 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.13 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.12 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor_qiniu-0.0.4 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor_qiniu-0.0.3 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor_qiniu-0.0.2 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor_qiniu-0.0.1 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.11 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.10 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js
rails_kindeditor-0.3.9 vendor/assets/javascripts/kindeditor/plugins/clearhtml/clearhtml.js