25 lines
819 B
JavaScript
Executable File
25 lines
819 B
JavaScript
Executable File
/**
|
|
* @license Angular v20.3.11
|
|
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
* License: MIT
|
|
*/
|
|
|
|
const Attribute = {
|
|
/**
|
|
* The jsaction attribute defines a mapping of a DOM event to a
|
|
* generic event (aka jsaction), to which the actual event handlers
|
|
* that implement the behavior of the application are bound. The
|
|
* value is a semicolon separated list of colon separated pairs of
|
|
* an optional DOM event name and a jsaction name. If the optional
|
|
* DOM event name is omitted, 'click' is assumed. The jsaction names
|
|
* are dot separated pairs of a namespace and a simple jsaction
|
|
* name.
|
|
*
|
|
* See grammar in README.md for expected syntax in the attribute value.
|
|
*/
|
|
JSACTION: 'jsaction',
|
|
};
|
|
|
|
export { Attribute };
|
|
//# sourceMappingURL=attribute.mjs.map
|