/* * Copyright (c) 2013-2014 Minkyu Lee. All rights reserved. * * NOTICE: All information contained herein is, and remains the * property of Minkyu Lee. The intellectual and technical concepts * contained herein are proprietary to Minkyu Lee and may be covered * by Republic of Korea and Foreign Patents, patents in process, * and are protected by trade secret or copyright law. * Dissemination of this information or reproduction of this material * is strictly forbidden unless prior written permission is obtained * from Minkyu Lee (niklaus.lee@gmail.com). * */
// Check License When File Save const LICENSE_CHECK_PROBABILITY = 0.3
var status = false var licenseInfo = null
/** * Set Registration Status * This function is out of LicenseManager class for the security reason * (To disable changing License status by API) * @private * @param {boolean} newStat * @return {string} */ functionsetStatus (licenseManager, newStat) { if (status !== newStat) { status = newStat licenseManager.emit('statusChanged', status) } }