diff options
author | Andinus <andinus@nand.sh> | 2022-06-12 16:19:31 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2022-06-12 16:19:31 +0530 |
commit | d5913e601fa1fcbf971c7517fd418c22412f5b6f (patch) | |
tree | cecefd47b0dcf0eb3f74fa85aaf5c0da73389a63 | |
parent | 234c399f59a23ef5af86148a67526319b8a79b8d (diff) | |
download | crater-d5913e601fa1fcbf971c7517fd418c22412f5b6f.tar.gz |
Add license header on bricks.js
-rw-r--r-- | resources/js/bricks.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/js/bricks.js b/resources/js/bricks.js index 7758b05..6b1dafe 100644 --- a/resources/js/bricks.js +++ b/resources/js/bricks.js @@ -1,3 +1,12 @@ +/** + * Bricks.js is MIT licensed. Taken from + * https://github.com/callmecavs/bricks.js. + * + * Homepage: http://callmecavs.com/bricks.js/ + * License: MIT + * Made by: Mike Cavalea + */ + (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : |