first commit

This commit is contained in:
Sam Keddy
2019-03-26 23:20:54 +00:00
commit 7126e83f5f
67 changed files with 9722 additions and 0 deletions

12
js/_onLoad.js Normal file
View File

@ -0,0 +1,12 @@
//when the page is donw loading, you can get ready to start
window.onload = function(){
updateCursor();
//if the user specified dimentions
if (specifiedDimentions)
//create a new pixel
newPixel(getValue('size-width'),getValue('size-height'),'');
else
//otherwise show the new pixel dialog
showDialogue('new-pixel', false);
};