-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257 from DDMAL/develop
Diva v3.2.0
- Loading branch information
Showing
30 changed files
with
1,553 additions
and
651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Diva.js Demo Page</title> | ||
<link rel="stylesheet" href="/css/diva.min.css" /> | ||
<!--[if IE]> | ||
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script> | ||
<script src="/js/diva.js" type="text/javascript"></script> | ||
<script src="/js/plugins/autoscroll.js" type="text/javascript"></script> | ||
<script src="/js/utils.js" type="text/javascript"></script> | ||
<style> | ||
body, html{ | ||
height:90%; | ||
} | ||
#diva-wrapper{ | ||
height:100%; | ||
} | ||
.diva-outer{ | ||
height:100%; | ||
} | ||
</style> | ||
<script type="text/javascript"> | ||
$(document).ready(function() { | ||
$('#diva-wrapper').diva({ | ||
enableAutoHeight: true, | ||
fixedHeightGrid: false, | ||
iipServerURL: "http://diva.simssa.ca/fcgi-bin/iipsrv.fcgi", | ||
objectData: "/demo/beromunster.json", | ||
imageDir: "/srv/images/beromunster", | ||
enableCanvas: true, | ||
enableDownload: true, | ||
enableAutoscroll: true | ||
}); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<div id="diva-wrapper"></div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.