~ubuntu-branches/debian/experimental/phpmyadmin/experimental

« back to all changes in this revision

Viewing changes to pdf_pages.php

  • Committer: Bazaar Package Importer
  • Author(s): Michal Čihař
  • Date: 2011-01-05 10:18:41 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20110105101841-h5wfo37zq1az3b6e
Tags: 4:3.3.9-1
* New upstream release.
* Fix connection settings when using dbconfig with remote MySQL server.
* Log when dbconfig generated settings are not accessible. 
* Add Slovak debconf translation (Closes: #608702).
* Update Danish debconf translation (Closes: #608941).

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
    $drag_y = $temp_sh_page['y'];
352
352
 
353
353
    $draginit2      .= ' Drag.init(getElement("table_' . $i . '"), null, 0, parseInt(myid.style.width)-2, 0, parseInt(myid.style.height)-5);' . "\n";
354
 
    $draginit       .= '    getElement("table_' . $i . '").onDrag = function (x, y) { document.edcoord.elements["c_table_' . $i . '[x]"].value = parseInt(x); document.edcoord.elements["c_table_' . $i . '[y]"].value = parseInt(y) }' . "\n";
 
354
    $draginit2      .= '    getElement("table_' . $i . '").onDrag = function (x, y) { document.edcoord.elements["c_table_' . $i . '[x]"].value = parseInt(x); document.edcoord.elements["c_table_' . $i . '[y]"].value = parseInt(y) }' . "\n";
355
355
    $draginit       .= '    getElement("table_' . $i . '").style.left = "' . $drag_x . 'px";' . "\n";
356
356
    $draginit       .= '    getElement("table_' . $i . '").style.top  = "' . $drag_y . 'px";' . "\n";
357
357
    $reset_draginit .= '    getElement("table_' . $i . '").style.left = "2px";' . "\n";