forked from theshock/libcanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverall.js
38 lines (29 loc) · 912 Bytes
/
overall.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
---
name: "LibCanvas"
description: "LibCanvas - free javascript library, based on AtomJS framework."
license:
- "[GNU Lesser General Public License](http://opensource.org/licenses/lgpl-license.php)"
- "[MIT License](http://opensource.org/licenses/mit-license.php)"
authors:
- Pavel Ponomarenko aka Shock <[email protected]>
...
*/
(function (atom, Math) { // LibCanvas
// bug in Safari 5.1 ( 'use strict' + 'set prop' )
// 'use strict';
var undefined,
/** @global {Object} global */
global = this,
/** @global {Function} slice */
slice = [].slice,
/** @global {Function} declare */
declare = atom.declare,
/** @global {Function} Registry */
Registry = atom.Registry,
/** @global {Function} Events */
Events = atom.Events,
/** @global {Function} Settings */
Settings = atom.Settings;
/*** [Code] ***/
}).call(typeof window == 'undefined' ? exports : window, atom, Math);