Remove function wrapper from development documentation. (#9027)

This commit is contained in:
Mario Pietsch
2025-04-14 19:29:33 +02:00
committed by GitHub
parent fbeb8cddc8
commit 1e2ce0bc80
4 changed files with 0 additions and 19 deletions

View File

@@ -26,10 +26,7 @@ module-type: widget-subclass
Widget base class
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.baseClass = "checkbox"; // Extend the <$checkbox> widget
@@ -50,5 +47,4 @@ exports.prototype.handleChangeEvent = function(event) {
console.log("Checkbox status:",this.inputDomNode.checked);
};
})();
```