Skip to content

Commit 51e88a8

Browse files
committed
added snippet manager
1 parent 541bfbf commit 51e88a8

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

dist/breinify-snippet-manager.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"use strict";
2+
3+
(function () {
4+
if (typeof Breinify !== 'object') {
5+
return;
6+
}
7+
// make sure the plugin isn't loaded yet
8+
else if (Breinify.plugins._isAdded('snippetManager')) {
9+
return;
10+
}
11+
12+
const $ = Breinify.UTL._jquery();
13+
const _private = {
14+
15+
};
16+
17+
const SnippetManager = {
18+
19+
};
20+
21+
// bind the module
22+
Breinify.plugins._add('snippetManager', SnippetManager);
23+
})();

dist/breinify-snippet-manager.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/plugins/SnippetManager.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"use strict";
2+
3+
(function () {
4+
if (typeof Breinify !== 'object') {
5+
return;
6+
}
7+
// make sure the plugin isn't loaded yet
8+
else if (Breinify.plugins._isAdded('snippetManager')) {
9+
return;
10+
}
11+
12+
const $ = Breinify.UTL._jquery();
13+
const _private = {
14+
15+
};
16+
17+
const SnippetManager = {
18+
19+
};
20+
21+
// bind the module
22+
Breinify.plugins._add('snippetManager', SnippetManager);
23+
})();

0 commit comments

Comments
 (0)