first commit

This commit is contained in:
aschwarz
2023-03-14 14:47:50 +01:00
commit 062b2dfae8
4752 changed files with 505842 additions and 0 deletions

18
bootstrap/node_modules/after-transition/index.js generated vendored Normal file
View File

@ -0,0 +1,18 @@
var hasTransitions = require('has-transitions');
var emitter = require('css-emitter');
function afterTransition(el, callback) {
if(hasTransitions(el)) {
return emitter(el).bind(callback);
}
return callback.apply(el);
};
afterTransition.once = function(el, callback) {
afterTransition(el, function fn(){
callback.apply(el);
emitter(el).unbind(fn);
});
};
module.exports = afterTransition;