| 1 |
<div id="reptag-dialog" class="reptag-dialog">
|
| 2 |
<div class="reptag-dialog-bar">
|
| 3 |
<?php if (!empty($title)) { print $title; } ?>
|
| 4 |
<div class="reptag-dialog-close">
|
| 5 |
<a href="#" id="reptag-dialog-close">
|
| 6 |
<img src="<?php print base_path() . drupal_get_path('module', 'reptag') .'/images/close.png'; ?>" alt="" />
|
| 7 |
</a>
|
| 8 |
</div>
|
| 9 |
</div>
|
| 10 |
<div id="reptag-dialog-content" class="reptag-dialog-content">
|
| 11 |
<?php if (empty($content)) { ?>
|
| 12 |
<div class="reptag-dialog-load">
|
| 13 |
<img src="<?php print base_path() . drupal_get_path('module', 'reptag') .'/images/busy.gif'; ?>" alt="" />
|
| 14 |
</div>
|
| 15 |
<?php } else { print $content; } ?>
|
| 16 |
</div>
|
| 17 |
</div>
|