diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-12-17 01:26:40 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-12-17 01:26:40 +0000 |
commit | f8a0c91ce689c5e0ae7bf05cc75b9982a3b26baf (patch) | |
tree | c385a5aeb960472a33b5871a0b06bc93fa62de86 /modules/watermark/views | |
parent | 9fa566a1c9d88436df6c1de2902f0e3d01b42f21 (diff) |
Drag & Drop the watermark now works and so does the dropdown box. The target image is divided into a 3x3 quadrant referenced as: northwest, north, northeast, west, center, east, southeast, south, southwest. Similiar to the imagemagik garvities. Currently the watermark is placed in the left top of the particular quadrant.
Diffstat (limited to 'modules/watermark/views')
-rw-r--r-- | modules/watermark/views/watermark_position.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/watermark/views/watermark_position.html.php b/modules/watermark/views/watermark_position.html.php index 821a8335..89fd4a50 100644 --- a/modules/watermark/views/watermark_position.html.php +++ b/modules/watermark/views/watermark_position.html.php @@ -3,10 +3,10 @@ $("#gDialog").ready(watermark_dialog_initialize); </script> <div id="gWatermarkAdmin"> - <div id="gTarget" class="droppable"> + <div id="gTarget"> <img id="gTargetImage" src="<?= $sample_image ?>"></img> <div id="gWaterMark" style="float:none;z-index:1005;position:absolute;top:100px"> - <img id ="gWaterMarkImage" src="<?= $watermark_image ?>" class="draggable" + <img id ="gWaterMarkImage" src="<?= $watermark_image ?>" width="<?= $watermark_width ?>" height="<?= $watermark_height ?>" /> </div> </div> |