Skip to content
Snippets Groups Projects
Commit dd63369c authored by Demian Katz's avatar Demian Katz
Browse files

ILL lightbox support. Bootstrap.

parent 7be1ef98
Branches
Tags
No related merge requests found
...@@ -161,7 +161,7 @@ $(document).ready(function(){ ...@@ -161,7 +161,7 @@ $(document).ready(function(){
}); });
// Place a Hold // Place a Hold
// Place a Storage Hold // Place a Storage Hold
$('.placehold,.placeStorageRetrievalRequest').click(function() { $('.placehold,.placeStorageRetrievalRequest,.placeILLRequest').click(function() {
var parts = $(this).attr('href').split('?'); var parts = $(this).attr('href').split('?');
parts = parts[0].split('/'); parts = parts[0].split('/');
var params = deparam($(this).attr('href')); var params = deparam($(this).attr('href'));
...@@ -225,4 +225,7 @@ $(document).ready(function(){ ...@@ -225,4 +225,7 @@ $(document).ready(function(){
Lightbox.addFormCallback('placeStorageRetrievalRequest', function() { Lightbox.addFormCallback('placeStorageRetrievalRequest', function() {
document.location.href = path+'/MyResearch/StorageRetrievalRequests'; document.location.href = path+'/MyResearch/StorageRetrievalRequests';
}); });
Lightbox.addFormCallback('placeILLRequest', function() {
document.location.href = path+'/MyResearch/ILLRequests';
});
}); });
<? <?
// Set up ill script:
$this->headScript()->appendFile("ill.js");
// Set page title. // Set page title.
$this->headTitle($this->translate('ill_request_place_text') . ': ' . $this->driver->getBreadcrumb()); $this->headTitle($this->translate('ill_request_place_text') . ': ' . $this->driver->getBreadcrumb());
...@@ -13,7 +10,7 @@ ...@@ -13,7 +10,7 @@
<p class="lead"><?=$this->transEsc('ill_request_place_text')?></p> <p class="lead"><?=$this->transEsc('ill_request_place_text')?></p>
<?=$this->flashmessages()?> <?=$this->flashmessages()?>
<div id="ILLRequestForm" class="storage-retrieval-request-form"> <div id="ILLRequestForm" class="storage-retrieval-request-form">
<form action="" class="form-horizontal" method="post"> <form action="" name="placeILLRequest" class="form-horizontal" method="post">
<? if (in_array("itemId", $this->extraFields)): ?> <? if (in_array("itemId", $this->extraFields)): ?>
<div class="control-group"> <div class="control-group">
...@@ -119,8 +116,19 @@ ...@@ -119,8 +116,19 @@
</form> </form>
</div> </div>
<script type="text/javascript"> <?
$(document).ready(function(){ // Set up ill script; we do this inline instead of in the header for lightbox compatibility:
setUpILLRequestForm('<?=$this->escapeHtml($this->driver->getUniqueId()) ?>'); $this->inlineScript()->appendFile('ill.js');
});
</script> $js = <<<JS
if ($.isReady) {
setUpILLRequestForm("{$this->escapeHtml($this->driver->getUniqueId())}");
} else {
$(document).ready(function(){
setUpILLRequestForm("{$this->escapeHtml($this->driver->getUniqueId())}");
});
}
JS;
echo $this->inlineScript()->appendScript($js);
?>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment