PHP Classes

File: public/js/tinymce/src/themes/mobile/src/main/js/util/SkinLoaded.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/themes/mobile/src/main/js/util/SkinLoaded.js   Download  
File: public/js/tinymce/src/themes/mobile/src/main/js/util/SkinLoaded.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 457 bytes
 

Contents

Class file image Download
define( 'tinymce.themes.mobile.util.SkinLoaded', [ ], function () { var fireSkinLoaded = function (editor) { var done = function () { editor._skinLoaded = true; editor.fire('SkinLoaded'); }; return function () { if (editor.initialized) { done(); } else { editor.on('init', done); } }; }; return { fireSkinLoaded: fireSkinLoaded }; } );