summaryrefslogtreecommitdiff
path: root/frontend/impattern/js/overlay.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/impattern/js/overlay.js')
-rw-r--r--frontend/impattern/js/overlay.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/frontend/impattern/js/overlay.js b/frontend/impattern/js/overlay.js
deleted file mode 100644
index 49a70d1..0000000
--- a/frontend/impattern/js/overlay.js
+++ /dev/null
@@ -1,19 +0,0 @@
-$("#overlay > .close").click(function(){
- $("#overlay").hide();
-});
-$('document').ready(function(){
- $("#overlay").click( function(){
- if( event.target == this ){
- $("#overlay").hide();
- return false;
- }
- });
-})
-function show_finished_image(image_url){
- $("#overlay").show();
- $("#draw_protector").hide();
- $('#final_image > img').attr("src", image_url);
- $('#links > input').attr("value", image_url);
- $("#final_image").show();
-}
-