Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ...
- id('pickerButton').addEventListener('click', () => PICKR.show());
- window.save = function(x, y) {
- var data = {};
- data['x'] = x;
- data['y'] = y;
- data['data'] = filledPixels;
- $.post('draw.php?submit=1', data, function(rsp) {
- $('body').append(rsp);
- });
- }
- function id(id) {
- return document.getElementById(id);
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment