芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/www/itrema/wp-content/plugins/ckeditor-for-wordpress/plugins/wppolls/plugin.js
/* Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.add( 'wppolls', { init : function( editor ) { // Register the toolbar buttons. editor.ui.addButton( 'WPPolls', { label : 'Insert Poll', icon : this.path + 'images/poll.gif', command : 'wppolls', toolbar: 'wordpress,100' }); // Register the commands. editor.addCommand( 'wppolls', { exec : function() { var pollId = insertPoll('visual', ''); if (pollId) editor.insertText(pollId); } }); } });