tweak embedding of Dojo acquisitions pages
authorGalen Charlton <gmc@equinoxinitiative.org>
Mon, 6 Feb 2017 17:39:17 +0000 (12:39 -0500)
committerKathy Lussier <klussier@masslnc.org>
Sat, 18 Feb 2017 18:31:31 +0000 (13:31 -0500)
- turn on the "open in new window" button
- set minimum height of eframes to 2000px

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Open-ILS/web/js/ui/default/staff/acq/app.js

index d5fd847..b100c4f 100644 (file)
@@ -9,7 +9,7 @@ angular.module('egAcquisitions',
     var resolver = {delay : function(egStartup) {return egStartup.go()}};
 
     var eframe_template = 
-        '<eg-embed-frame url="acq_url" handlers="funcs"></eg-embed-frame>';
+        '<eg-embed-frame allow-escape="true" min-height="min_height" url="acq_url" handlers="funcs"></eg-embed-frame>';
 
     $routeProvider.when('/acq/legacy/:noun/:verb', {
         template: eframe_template,
@@ -35,6 +35,8 @@ function($scope , $routeParams , $location , egCore) {
     var acq_path = '/eg/acq/' + 
         $routeParams.noun + '/' + $routeParams.verb + location.search;
 
+    $scope.min_height = 2000; // give lots of space to start
+
     // embed URL must include protocol/domain or it will be loaded via
     // push-state, resulting in an infinitely nested pages.
     $scope.acq_url =