All the sources codes
TypeScript
February 11 2022 at 10:38
#336
public static addClass($class: string, element: string) {
const elements = $(element);
if (elements.length > 0) {
elements.each(function () {
$(this).addClass($class);
});
}
}
JavaScript
September 18 2020 at 13:36
#312
(Math.random() * (5 - (-5)) + - 5).toFixed(2)
Haxe
September 27 2016 at 08:07
#309
public var isDialog : Bool;
...
public function isLabelDialog() : Bool
{
if (this.isDialog == true)
return true;
else
return false;
}