1
0

Fix for borken selection box in TagFaces.

This commit is contained in:
rWatcher 2010-01-10 02:28:31 -05:00
parent cf81ac7085
commit e4d96261f6
2 changed files with 19 additions and 9 deletions

View File

@ -85,8 +85,8 @@ class tagfaces_Controller extends Controller {
$str_face_title = str_replace("'", "\'", Input::instance()->post("face_title"));
$str_face_description = str_replace("'", "\'", Input::instance()->post("face_description"));
$item_data = Input::instance()->post("item_id");
$str_x1 = Input::instance()->post("x");
$str_y1 = Input::instance()->post("y");
$str_x1 = Input::instance()->post("x1");
$str_y1 = Input::instance()->post("y1");
$str_x2 = Input::instance()->post("x2");
$str_y2 = Input::instance()->post("y2");
@ -192,13 +192,17 @@ class tagfaces_Controller extends Controller {
// Generate input boxes to hold the coordinates of the face.
$coordinates_group = $form->group("FaceCoordinates")
->label(t("Coordinates:"));
$coordinates_group->input("x")
$coordinates_group->input("x1")
->id('x1')
->label(t("X1"));
$coordinates_group->input("y")
$coordinates_group->input("y1")
->id('y1')
->label(t("Y1"));
$coordinates_group->input("x2")
->id('x2')
->label(t("X2"));
$coordinates_group->input("y2")
->id('y2')
->label(t("Y2"));
// Add the id# of the photo and a save button to the form.

View File

@ -53,8 +53,8 @@
// Our simple event handler, called from onChange and onSelect
// event handlers, as per the Jcrop invocation above
function showCoords(c) {
jQuery('#x').val(c.x);
jQuery('#y').val(c.y);
jQuery('#x1').val(c.x);
jQuery('#y1').val(c.y);
jQuery('#x2').val(c.x2);
jQuery('#y2').val(c.y2);
};
@ -87,10 +87,10 @@
#face_description {
width: 400px;
}
#x {
#x1 {
width: 40px;
}
#y {
#y1 {
width: 40px;
}
#x2 {
@ -108,7 +108,7 @@ li {
</style>
<div id="g-coordinates">
<?= $form ?>
<?=$form ?>
</div>
<br/><br/><br/>
@ -121,6 +121,12 @@ li {
</div>
</fieldset>
<br/>
<div id="g-exit-faces">