Skip to content

Instantly share code, notes, and snippets.

@VolkerK
VolkerK / .gitignore
Created April 13, 2012 06:57 — forked from hiroprotagonist/.gitignore
abas-eB .gitignore for GitHub
*.swp
*.class
*.war
*.log
*.desktop
/manual/
/rollbackBackupDirectory
/workbench/
/uninstall
@VolkerK
VolkerK / task-create-form.js
Created April 11, 2011 14:19
orientationchange sandbox
<script type="text/javascript">
jQuery(window).bind("pageshow",function(e) {
printO();
});
jQuery(window).bind("orientationchange",function(e) {
printO();
});
function printO() {
var landscape = jQuery('html.landscape').size();
var portrait = jQuery('html.portrait').size();