first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:18:17 +03:00
commit 7b2b27a42c
1660 changed files with 123050 additions and 0 deletions

18
public/js/modules/bootstrap.js vendored Normal file
View File

@@ -0,0 +1,18 @@
CNVS.Bootstrap = function() {
var __core = SEMICOLON.Core;
return {
init: function(selector) {
__core.loadJS({ file: 'plugins.bootstrap.js', id: 'canvas-bootstrap-js', jsFolder: true });
__core.isFuncTrue( function() {
return typeof bootstrap !== 'undefined';
}).then( function(cond) {
if( !cond ) {
return false;
}
__core.initFunction({ class: 'has-plugin-bootstrap', event: 'pluginBootstrapReady' });
});
}
};
}();