Skip to content

Commit

Permalink
Add build files (auto-generated)
Browse files Browse the repository at this point in the history
Fixes #263
  • Loading branch information
ipeychev committed Jun 30, 2015
1 parent 0744850 commit aa6afb4
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 38 deletions.
12 changes: 6 additions & 6 deletions api/files/src_ui_react_src_components_main.jsx.html
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ <h1><small>File</small> <code>src/ui/react/src/components/main.jsx</code></h1>
// this does not include a situation when he clicks on some button, part of
// editor&#x27;s UI.

// It is not easy to debounce _setUIHidden on click, because if we
// debounce it, when the handler is being invoked, the target may be no more part
// It is not easy to debounce _setUIHidden on mousedown, because if we
// debounce it, when the handler is being invoked, the target might be no more part
// of the editor&#x27;s UI - onActionPerformed causes re-render.
this._clickListener = function (event) {
this._mousedownListener = function (event) {
this._setUIHidden(event.target);
}.bind(this);

Expand All @@ -268,7 +268,7 @@ <h1><small>File</small> <code>src/ui/react/src/components/main.jsx</code></h1>
}, this.props.eventsDelay, this);

editor.once(&#x27;contentDom&#x27;, function() {
document.addEventListener(&#x27;click&#x27;, this._clickListener);
document.addEventListener(&#x27;mousedown&#x27;, this._mousedownListener);
document.addEventListener(&#x27;keydown&#x27;, this._keyDownListener);
}.bind(this));
},
Expand Down Expand Up @@ -353,8 +353,8 @@ <h1><small>File</small> <code>src/ui/react/src/components/main.jsx</code></h1>
* @method componentWillUnmount
*/
componentWillUnmount: function() {
if (this._clickListener) {
document.removeEventListener(&#x27;click&#x27;, this._clickListener);
if (this._mousedownListener) {
document.removeEventListener(&#x27;mousedown&#x27;, this._mousedownListener);
}

if (this._keyDownListener) {
Expand Down
4 changes: 2 additions & 2 deletions dist/alloy-editor/alloy-editor-all-min.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/alloy-editor/alloy-editor-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -30526,10 +30526,10 @@ CKEDITOR.tools.buildTableMap = function (table) {
// this does not include a situation when he clicks on some button, part of
// editor's UI.

// It is not easy to debounce _setUIHidden on click, because if we
// debounce it, when the handler is being invoked, the target may be no more part
// It is not easy to debounce _setUIHidden on mousedown, because if we
// debounce it, when the handler is being invoked, the target might be no more part
// of the editor's UI - onActionPerformed causes re-render.
this._clickListener = (function (event) {
this._mousedownListener = (function (event) {
this._setUIHidden(event.target);
}).bind(this);

Expand All @@ -30538,7 +30538,7 @@ CKEDITOR.tools.buildTableMap = function (table) {
}, this.props.eventsDelay, this);

editor.once('contentDom', (function () {
document.addEventListener('click', this._clickListener);
document.addEventListener('mousedown', this._mousedownListener);
document.addEventListener('keydown', this._keyDownListener);
}).bind(this));
},
Expand Down Expand Up @@ -30623,8 +30623,8 @@ CKEDITOR.tools.buildTableMap = function (table) {
* @method componentWillUnmount
*/
componentWillUnmount: function componentWillUnmount() {
if (this._clickListener) {
document.removeEventListener('click', this._clickListener);
if (this._mousedownListener) {
document.removeEventListener('mousedown', this._mousedownListener);
}

if (this._keyDownListener) {
Expand Down
4 changes: 2 additions & 2 deletions dist/alloy-editor/alloy-editor-core-min.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/alloy-editor/alloy-editor-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -10306,10 +10306,10 @@ CKEDITOR.tools.buildTableMap = function (table) {
// this does not include a situation when he clicks on some button, part of
// editor's UI.

// It is not easy to debounce _setUIHidden on click, because if we
// debounce it, when the handler is being invoked, the target may be no more part
// It is not easy to debounce _setUIHidden on mousedown, because if we
// debounce it, when the handler is being invoked, the target might be no more part
// of the editor's UI - onActionPerformed causes re-render.
this._clickListener = (function (event) {
this._mousedownListener = (function (event) {
this._setUIHidden(event.target);
}).bind(this);

Expand All @@ -10318,7 +10318,7 @@ CKEDITOR.tools.buildTableMap = function (table) {
}, this.props.eventsDelay, this);

editor.once('contentDom', (function () {
document.addEventListener('click', this._clickListener);
document.addEventListener('mousedown', this._mousedownListener);
document.addEventListener('keydown', this._keyDownListener);
}).bind(this));
},
Expand Down Expand Up @@ -10403,8 +10403,8 @@ CKEDITOR.tools.buildTableMap = function (table) {
* @method componentWillUnmount
*/
componentWillUnmount: function componentWillUnmount() {
if (this._clickListener) {
document.removeEventListener('click', this._clickListener);
if (this._mousedownListener) {
document.removeEventListener('mousedown', this._mousedownListener);
}

if (this._keyDownListener) {
Expand Down
4 changes: 2 additions & 2 deletions dist/alloy-editor/alloy-editor-no-ckeditor-min.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/alloy-editor/alloy-editor-no-ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -29847,10 +29847,10 @@ CKEDITOR.tools.buildTableMap = function (table) {
// this does not include a situation when he clicks on some button, part of
// editor's UI.

// It is not easy to debounce _setUIHidden on click, because if we
// debounce it, when the handler is being invoked, the target may be no more part
// It is not easy to debounce _setUIHidden on mousedown, because if we
// debounce it, when the handler is being invoked, the target might be no more part
// of the editor's UI - onActionPerformed causes re-render.
this._clickListener = (function (event) {
this._mousedownListener = (function (event) {
this._setUIHidden(event.target);
}).bind(this);

Expand All @@ -29859,7 +29859,7 @@ CKEDITOR.tools.buildTableMap = function (table) {
}, this.props.eventsDelay, this);

editor.once('contentDom', (function () {
document.addEventListener('click', this._clickListener);
document.addEventListener('mousedown', this._mousedownListener);
document.addEventListener('keydown', this._keyDownListener);
}).bind(this));
},
Expand Down Expand Up @@ -29944,8 +29944,8 @@ CKEDITOR.tools.buildTableMap = function (table) {
* @method componentWillUnmount
*/
componentWillUnmount: function componentWillUnmount() {
if (this._clickListener) {
document.removeEventListener('click', this._clickListener);
if (this._mousedownListener) {
document.removeEventListener('mousedown', this._mousedownListener);
}

if (this._keyDownListener) {
Expand Down
4 changes: 2 additions & 2 deletions dist/alloy-editor/alloy-editor-no-react-min.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/alloy-editor/alloy-editor-no-react.js
Original file line number Diff line number Diff line change
Expand Up @@ -10985,10 +10985,10 @@ CKEDITOR.tools.buildTableMap = function (table) {
// this does not include a situation when he clicks on some button, part of
// editor's UI.

// It is not easy to debounce _setUIHidden on click, because if we
// debounce it, when the handler is being invoked, the target may be no more part
// It is not easy to debounce _setUIHidden on mousedown, because if we
// debounce it, when the handler is being invoked, the target might be no more part
// of the editor's UI - onActionPerformed causes re-render.
this._clickListener = (function (event) {
this._mousedownListener = (function (event) {
this._setUIHidden(event.target);
}).bind(this);

Expand All @@ -10997,7 +10997,7 @@ CKEDITOR.tools.buildTableMap = function (table) {
}, this.props.eventsDelay, this);

editor.once('contentDom', (function () {
document.addEventListener('click', this._clickListener);
document.addEventListener('mousedown', this._mousedownListener);
document.addEventListener('keydown', this._keyDownListener);
}).bind(this));
},
Expand Down Expand Up @@ -11082,8 +11082,8 @@ CKEDITOR.tools.buildTableMap = function (table) {
* @method componentWillUnmount
*/
componentWillUnmount: function componentWillUnmount() {
if (this._clickListener) {
document.removeEventListener('click', this._clickListener);
if (this._mousedownListener) {
document.removeEventListener('mousedown', this._mousedownListener);
}

if (this._keyDownListener) {
Expand Down
Binary file modified dist/alloy-editor/assets/fonts/alloyeditor.eot
Binary file not shown.
Binary file modified dist/alloy-editor/assets/fonts/alloyeditor.ttf
Binary file not shown.
Binary file modified dist/alloy-editor/assets/fonts/alloyeditor.woff
Binary file not shown.

0 comments on commit aa6afb4

Please sign in to comment.