apex4x
Version:
The Comprehensive ARIA Development Suite
22 lines (19 loc) • 524 B
JavaScript
/*@license
ARIA Switch Module 1.0 for Apex 4X
Author: Bryan Garaventa (https://www.linkedin.com/in/bgaraventa)
Home: WhatSock.com : Download: https://github.com/whatsock/apex
License: MIT (https://opensource.org/licenses/MIT)
Required dependencies: Button.js
*/
(function () {
if (!("setSwitch" in $A)) {
$A.import("Button", {
name: "SwitchModule",
props: props,
once: true,
call: function (props) {
// The Switch module is an alias of the Button module.
},
});
}
})();