| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Engineering/V1/iimec/wp-content/plugins/ckeditor-for-wordpress/plugins/wppolls/ |
Upload File : |
/*
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);
}
});
}
});