summaryrefslogtreecommitdiff
path: root/core/_bootstrap.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/_bootstrap.js')
-rw-r--r--core/_bootstrap.js69
1 files changed, 0 insertions, 69 deletions
diff --git a/core/_bootstrap.js b/core/_bootstrap.js
deleted file mode 100644
index 6bfbb14..0000000
--- a/core/_bootstrap.js
+++ /dev/null
@@ -1,69 +0,0 @@
-/**
- * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.html or http://ckeditor.com/license
- */
-
-/**
- * @fileOverview API initialization code.
- */
-
-(function() {
- // Disable HC detection in WebKit. (#5429)
- if ( CKEDITOR.env.webkit )
- CKEDITOR.env.hc = false;
- else {
- // Check whether high contrast is active by creating a colored border.
- var hcDetect = CKEDITOR.dom.element.createFromHtml( '<div style="width:0px;height:0px;position:absolute;left:-10000px;' +
- 'border: 1px solid;border-color: red blue;"></div>', CKEDITOR.document );
-
- hcDetect.appendTo( CKEDITOR.document.getHead() );
-
- // Update CKEDITOR.env.
- // Catch exception needed sometimes for FF. (#4230)
- try {
- CKEDITOR.env.hc = hcDetect.getComputedStyle( 'border-top-color' ) == hcDetect.getComputedStyle( 'border-right-color' );
- } catch ( e ) {
- CKEDITOR.env.hc = false;
- }
-
- hcDetect.remove();
- }
-
- if ( CKEDITOR.env.hc )
- CKEDITOR.env.cssClass += ' cke_hc';
-
- // Initially hide UI spaces when relevant skins are loading, later restored by skin css.
- CKEDITOR.document.appendStyleText( '.cke{visibility:hidden;}' );
-
- // Mark the editor as fully loaded.
- CKEDITOR.status = 'loaded';
- CKEDITOR.fireOnce( 'loaded' );
-
- // Process all instances created by the "basic" implementation.
- var pending = CKEDITOR._.pending;
- if ( pending ) {
- delete CKEDITOR._.pending;
-
- for ( var i = 0; i < pending.length; i++ ) {
- CKEDITOR.editor.prototype.constructor.apply( pending[ i ][ 0 ], pending[ i ][ 1 ] );
- CKEDITOR.add( pending[ i ][ 0 ] );
- }
- }
-})();
-
-/**
- * Indicates that CKEditor is running on a High Contrast environment.
- *
- * if ( CKEDITOR.env.hc )
- * alert( 'You\'re running on High Contrast mode. The editor interface will get adapted to provide you a better experience.' );
- *
- * @property {Boolean} hc
- * @member CKEDITOR.env
- */
-
-/**
- * Fired when a CKEDITOR core object is fully loaded and ready for interaction.
- *
- * @event loaded
- * @member CKEDITOR
- */