forked from extern/egroupware
ac0867ab77
reorganized preprocessor a bit to fix some not replaced size attributes also pass on constructor args in all Et2Url widgets There is still a JS error in new searchbox, causing admin searchbox to not render :(
32 lines
789 B
TypeScript
32 lines
789 B
TypeScript
/**
|
|
* EGroupware eTemplate2 - Fax url/send widget
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @link https://www.egroupware.org
|
|
* @author Ralf Becker
|
|
*/
|
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
import {Et2UrlFax} from "./Et2UrlFax";
|
|
import {Et2UrlReadonly} from "./Et2UrlReadonly";
|
|
|
|
/**
|
|
* @customElement et2-url-fax_ro
|
|
*/
|
|
export class Et2UrlFaxReadonly extends Et2UrlReadonly
|
|
{
|
|
transformAttributes(attrs)
|
|
{
|
|
if (typeof attrs.onclick === 'undefined')
|
|
{
|
|
attrs.onclick = () =>
|
|
{
|
|
Et2UrlFax.action(this.value);
|
|
}
|
|
}
|
|
super.transformAttributes(attrs);
|
|
}
|
|
}
|
|
// @ts-ignore TypeScript is not recognizing that this is a LitElement
|
|
customElements.define("et2-url-fax_ro", Et2UrlFaxReadonly); |