/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
</copyright> */
/**
@module "montage/ui/rich-text-editor.reel"
@requires montage/core/core
*/
var Montage = require("montage/core/core").Montage,
Component = require("montage/ui/component").Component,
MutableEvent = require("montage/core/event/mutable-event").MutableEvent,
Resizer = require("node_modules/labs/rich-text-editor.reel/rich-text-resizer").Resizer,
Sanitizer = require("node_modules/labs/rich-text-editor.reel/rich-text-sanitizer").Sanitizer;
Point = require("montage/core/geometry/point").Point;
/**
@class module:"montage/ui/rich-text-editor.reel".RichTextEditor
@extends module:montage/ui/component.Component
*/
exports.RichTextEditor = Montage.create(Component,/** @lends module:"montage/ui/rich-text-editor.reel".RichTextEditor# */ {
/**
Description TODO
@private
*/
_hasSelectionChangeEvent: {
enumerable: false,
value: null // Need to be preset to null, will be set to true or false later on
},
/**
Description TODO
@private
*/
_uniqueId: {
enumerable: false,
value: Math.floor(Math.random() * 1000) + "-" + Math.floor(M
|