Adding query 1.8.0 and pubsub bus

This commit is contained in:
Vince 2012-08-30 00:48:22 +02:00
parent 04bcb09496
commit 52a9d7b379
3 changed files with 9251 additions and 0 deletions

View File

@ -39,6 +39,9 @@
</div>
</div>
<div id="cursorInfo"></div>
<script src="js/lib/jquery-1.8.0.js"></script>
<script src="js/lib/pubsub.js"></script>
<script src="js/lib/jsColor_1_4_0/jscolor.js"></script>
<script src="js/frameSheetModel.js"></script>
<script src="js/piskel.js"></script>

9227
js/lib/jquery-1.8.0.js vendored Normal file

File diff suppressed because it is too large Load Diff

21
js/lib/pubsub.js Normal file
View File

@ -0,0 +1,21 @@
/* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011
* http://benalman.com/
* Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */
(function($) {
var o = $({});
$.subscribe = function() {
o.on.apply(o, arguments);
};
$.unsubscribe = function() {
o.off.apply(o, arguments);
};
$.publish = function() {
o.trigger.apply(o, arguments);
};
}(jQuery));