File "close.js"

Full Path: /home/warrior1/public_html/plugins/elementor/app/assets/js/loader/commands/close.js
File size: 231 bytes
MIME-type: text/plain
Charset: utf-8

export class Close extends $e.modules.CommandBase {
	apply() {
		if ( ! this.component.close() ) {
			return false;
		}

		this.component.iframe.remove();
		this.component.iframe = null;

		return true;
	}
}

export default Close;