I have some problem with understanding some code
(function (lib_p, img, cjs) {
var p; // shortcut to reference prototypes
// library properties:
lib_p.properties = {
width: 364,
height: 540,
fps: 20,
color: "#000000",
manifest: [
{src:"img/bot1_l.png", id:"bot1_l"}
]
};
// symbols
(lib_p.bot1_l = function() {
this.initialize(img.bot1_l);
}).prototype = p = new cjs.Bitmap();
p.nominalBounds = new cjs.Rectangle(0,0,116,344);
Where can I read about this? I understand that is createJS, but I can`t figure out what all this mean - especially:
(lib_p, img, cjs)
,(lib_p.bot1_l = function() { this.initialize(img.bot1_l); }).prototype = p = new cjs.Bitmap(); p.nominalBounds = new cjs.Rectangle(0,0,116,344);