﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6940	editor.getSelection() not working in ie	ehsan		"i use following code in ff and get selection text but in ie it returns [object].

(function()
{
    //Section 1 : Code to execute when the toolbar button is pressed
    var a = {
        exec: function(editor)
        {
            var x = editor.getSelection().getNative();
            alert(x);

        }
    },

    //Section 2 : Create the button and add the functionality to it
b = 'test';
    CKEDITOR.plugins.add(b, {
        init: function(editor)
        {
            editor.addCommand(b, a);
            editor.ui.addButton(""test"", {
                label: 'test',
                icon: this.path + ""test.gif"",
                command: b
            });
        }
    });
})();"	Bug	closed	Normal		General	3.5	invalid		
