Skip to content

Instantly share code, notes, and snippets.

View stsrki's full-sized avatar
🏢
Working from office

Mladen Macanović stsrki

🏢
Working from office
View GitHub Profile
@stsrki
stsrki / megabit-cla.md
Created March 22, 2022 10:12
Megabit CLA

Contribution License Agreement

Thank you for your interest in contributing to Blazorise, a software considered a user interface component library made on top of a web framework called Blazor, and CSS frameworks like Bootstrap, AntDesign, Bulma or Material altogether named as Blazorise (the “Blazorise”)

This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to Megabit d.o.o. in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact info@blazorise.com.

You agree that the following terms apply to all of your past, present and future Contributions.

Copyright License. You hereby grant, and agree to grant, to Megabit d.o.o. a non-exclusive, perpetual, irrevocable,

@stsrki
stsrki / behave.js
Last active March 21, 2022 14:09
Behave.js modified version
function BehaveHooks() {
var hooks = {};
return {
add: function (hookName, fn) {
if (typeof hookName == "object") {
var i;
for (i = 0; i < hookName.length; i++) {
var theHook = hookName[i];
if (!hooks[theHook]) {