Skip to content
Snippets Groups Projects
Commit ab60570c authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Merge branch 'release-2.3'

parents 6d31f09a c08b6b20
Branches
Tags
No related merge requests found
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
.panel {border:1px solid #DDD} .panel {border:1px solid #DDD}
.panel .panel-heading {background:#EEE} .panel .panel-heading {background:#EEE}
.panel-collapse {max-height:500px;}
.details {text-align:center} .details {text-align:center}
.details .copyright {margin-bottom:1em} .details .copyright {margin-bottom:1em}
...@@ -46,6 +47,8 @@ ...@@ -46,6 +47,8 @@
#view #preview {max-width:100%} #view #preview {max-width:100%}
.front {position:absolute;left:10%;top:150px;width:80%;z-index:5} .front {position:absolute;left:10%;top:150px;width:80%;z-index:5}
#zoomy {background:#F0F0F0}
#allFiles .btn {display:block;margin:auto;max-width:400px} #allFiles .btn {display:block;margin:auto;max-width:400px}
#download-button .details {font-size:14px} #download-button .details {font-size:14px}
div.xml { display:block;font:10pt Courier;text-align:left;padding-left:1em } div.xml { display:block;font:10pt Courier;text-align:left;padding-left:1em }
......
...@@ -23,8 +23,6 @@ function ajaxGetView(pageObject) { ...@@ -23,8 +23,6 @@ function ajaxGetView(pageObject) {
} else { } else {
currTab = $('.nav-tabs li a:eq(0)')[0].id; currTab = $('.nav-tabs li a:eq(0)')[0].id;
} }
// Accordion size
resizeAccordions();
}, },
error: function(d,e){ error: function(d,e){
console.log(d.responseText); console.log(d.responseText);
...@@ -123,31 +121,6 @@ function scrollToSelected() { ...@@ -123,31 +121,6 @@ function scrollToSelected() {
scrollTop: $('#collapse1 .selected').offset().top-$('#collapse1').offset().top+$('#collapse1').scrollTop()-12 scrollTop: $('#collapse1 .selected').offset().top-$('#collapse1').offset().top+$('#collapse1').scrollTop()-12
}); });
} }
function scrollAdjust() {
$('#collapse1').scrollTop($('#'+topScrollItem).offset().top-$('#collapse1').offset().top+$('#collapse1').scrollTop());
}
// Accordion size
var vudlAccordionHeight
function resizeAccordions(offset) {
vudlAccordionHeight = window.innerHeight // Window height
// Add scroll distance
+ Math.min($('#side-nav').position().top, document.body.scrollTop)
// Minus the top of the accordion
- $('#side-nav').position().top
// Minus the target distance from the bottom
- vudlSettings.accordion.bottom
// Subtract height of the headers
- ($('#side-nav .accordion-heading').length*vudlSettings.accordion.headerHeight);
// All accordions
$('#side-nav .panel-collapse').css({
'max-height':vudlAccordionHeight,
'overflow-y':'auto'
});
$('#zoom').css({
'height':vudlAccordionHeight,
'overflow-y':'auto'
});
}
// Toggle side menu // Toggle side menu
function toggleSideNav() { function toggleSideNav() {
$('#side-nav').toggle(); $('#side-nav').toggle();
...@@ -194,7 +167,4 @@ $(document).ready(function() { ...@@ -194,7 +167,4 @@ $(document).ready(function() {
}); });
}); });
// Initial alignment // Initial alignment
$( window ).load( scrollToSelected ); $( window ).load( scrollToSelected );
// Accordion size \ No newline at end of file
$( window ).resize( resizeAccordions );
$( document ).scroll( resizeAccordions );
\ No newline at end of file
...@@ -10,6 +10,7 @@ var Zoomy = { ...@@ -10,6 +10,7 @@ var Zoomy = {
Zoomy.canvas.height = Math.floor(Zoomy.canvas.clientHeight); Zoomy.canvas.height = Math.floor(Zoomy.canvas.clientHeight);
Zoomy.width = Zoomy.canvas.width; Zoomy.width = Zoomy.canvas.width;
Zoomy.height = Zoomy.canvas.height; Zoomy.height = Zoomy.canvas.height;
Zoomy.minimap = null;
Zoomy.rebound(); Zoomy.rebound();
Zoomy.draw(); Zoomy.draw();
}, false); }, false);
...@@ -42,6 +43,23 @@ var Zoomy = { ...@@ -42,6 +43,23 @@ var Zoomy = {
Math.TWO_PI = Math.PI*2; Math.TWO_PI = Math.PI*2;
Math.HALF_PI = Math.PI/2; Math.HALF_PI = Math.PI/2;
}, },
initMinimap: function() {
var aspectRatio = this.image.width / this.image.height;
var size = 150;
var mm = {
width : this.image.width > this.image.height ? size : size * aspectRatio,
height : this.image.height > this.image.width ? size : size / aspectRatio,
size : size
};
if(this.image.sideways) {
var t = mm.width;
mm.width = mm.height;
mm.height = t;
}
mm.x = this.width - (size+mm.width)/2 - 10;
mm.y = this.height - (size+mm.height)/2 - 10;
return mm;
},
mouseHandle: function(e) { mouseHandle: function(e) {
if(!Zoomy.mouseDown) return; if(!Zoomy.mouseDown) return;
e.preventDefault(); e.preventDefault();
...@@ -78,14 +96,17 @@ var Zoomy = { ...@@ -78,14 +96,17 @@ var Zoomy = {
x: 0, x: 0,
y: 0, y: 0,
angle: 0, angle: 0,
sideways: false,
content: img, content: img,
transX: 0, transX: 0,
transY: 0, transY: 0,
} }
Zoomy.minimap = null;
Zoomy.center(); Zoomy.center();
}, },
draw: function() { draw: function() {
this.context.clearRect(0,0,this.width,this.height); this.context.clearRect(0,0,this.width,this.height);
// Image
this.context.save(); this.context.save();
this.context.translate(this.image.x, this.image.y); this.context.translate(this.image.x, this.image.y);
this.context.rotate(this.image.angle); this.context.rotate(this.image.angle);
...@@ -96,6 +117,61 @@ var Zoomy = { ...@@ -96,6 +117,61 @@ var Zoomy = {
this.image.rheight this.image.rheight
); );
this.context.restore(); this.context.restore();
// Minimap
if(this.minimap == null) {
this.minimap = this.initMinimap();
}
this.context.save();
this.context.translate(this.minimap.x, this.minimap.y);
this.context.drawImage(
this.image.content,
0, 0,
this.minimap.width,
this.minimap.height
);
this.context.strokeStyle = "#00F";
var hLength = (this.width / this.image.rwidth) * this.minimap.width;
var vLength = (this.height / this.image.rheight) * this.minimap.height;
var drawWidth = this.image.sideways ? vLength : hLength;
var drawHeight = this.image.sideways ? hLength : vLength;
var xdiff = this.image.sideways
? -(this.image.y / this.image.height) * this.minimap.width
: -(this.image.x / this.image.width) * this.minimap.width;
var ydiff = this.image.sideways
? -(this.image.x / this.image.width) * this.minimap.height
: -(this.image.y / this.image.height) * this.minimap.height;
switch(this.image.angle % Math.TWO_PI) {
case 0:
break;
case Math.HALF_PI: // On right side
ydiff = this.minimap.height - drawHeight - ydiff;
break;
case Math.PI: // Upside-down
xdiff = this.minimap.width - drawWidth - xdiff;
ydiff = this.minimap.height - drawHeight - ydiff;
break;
default: // On left side
xdiff = this.minimap.width - drawWidth - xdiff;
break;
}
if(drawWidth > this.minimap.width) {
xdiff = 0;
drawWidth = this.minimap.width;
}
if(drawHeight > this.minimap.height) {
ydiff = 0;
drawHeight = this.minimap.height;
}
this.context.strokeRect(
Math.max(0, xdiff),
Math.max(0, ydiff),
drawWidth,
drawHeight
);
this.context.restore();
}, },
center: function() { center: function() {
this.width = this.canvas.width; this.width = this.canvas.width;
...@@ -118,6 +194,7 @@ var Zoomy = { ...@@ -118,6 +194,7 @@ var Zoomy = {
this.image.angle = (this.image.angle + Math.PI + Math.HALF_PI) % Math.TWO_PI; this.image.angle = (this.image.angle + Math.PI + Math.HALF_PI) % Math.TWO_PI;
this.image.width = [this.image.height, this.image.height=this.image.width][0]; this.image.width = [this.image.height, this.image.height=this.image.width][0];
this.image.sideways = !this.image.sideways;
this.rebound(); this.rebound();
this.draw(); this.draw();
...@@ -130,6 +207,7 @@ var Zoomy = { ...@@ -130,6 +207,7 @@ var Zoomy = {
this.image.angle = (this.image.angle + Math.HALF_PI) % Math.TWO_PI; this.image.angle = (this.image.angle + Math.HALF_PI) % Math.TWO_PI;
this.image.width = [this.image.height, this.image.height=this.image.width][0]; this.image.width = [this.image.height, this.image.height=this.image.width][0];
this.image.sideways = !this.image.sideways;
this.rebound(); this.rebound();
this.draw(); this.draw();
......
...@@ -41,9 +41,10 @@ ...@@ -41,9 +41,10 @@
// Initialize the size of Zoomy // Initialize the size of Zoomy
$('#zoom-tab').on('shown.bs.tab', function(e) { $('#zoom-tab').on('shown.bs.tab', function(e) {
$('.loading-bar').removeClass('hidden'); $('.loading-bar').removeClass('hidden');
var sidenav = document.getElementById('side-nav'); $('#zoomy').css({
$('#zoomy').css('width', '100%'); 'width' : '100%',
$('#zoomy').css('height', vudlAccordionHeight); 'height': Math.ceil($('#side-nav').offset().top+$('#side-nav').height()-$('#zoomy').offset().top)
});
Zoomy.init(document.getElementById('zoomy')); Zoomy.init(document.getElementById('zoomy'));
Zoomy.load(pageData['large'], function() { $('.loading-bar').addClass('hidden'); }); Zoomy.load(pageData['large'], function() { $('.loading-bar').addClass('hidden'); });
}); });
......
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