Skip to content

Commit

Permalink
Initial commit of release 1.0.
Browse files Browse the repository at this point in the history
~ Tom
  • Loading branch information
pappastech committed Jun 8, 2011
1 parent c470746 commit 455d2f0
Show file tree
Hide file tree
Showing 16 changed files with 4,553 additions and 0 deletions.
82 changes: 82 additions & 0 deletions js/common.js
@@ -0,0 +1,82 @@
function get_dimensions()
{
var dims = {width:0,height:0};

if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
dims.width = window.innerWidth;
dims.height = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
dims.width = document.documentElement.clientWidth;
dims.height = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
dims.width = document.body.clientWidth;
dims.height = document.body.clientHeight;
}

return dims;
}

function set_feedback(text, classname, keep_displayed)
{
if(text!='')
{
$('#feedback_bar').removeClass();
$('#feedback_bar').addClass(classname);
$('#feedback_bar').text(text);
$('#feedback_bar').css('opacity','1');

if(!keep_displayed)
{
$('#feedback_bar').fadeTo(5000, 1);
$('#feedback_bar').fadeTo("fast",0);
}
}
else
{
$('#feedback_bar').css('opacity','0');
}
}

//keylisteners

$(window).jkey('f1',function(){
window.location = BASE_URL + '/customers/index';
});


$(window).jkey('f2',function(){
window.location = BASE_URL + '/items/index';
});


$(window).jkey('f3',function(){
window.location = BASE_URL + '/reports/index';
});

$(window).jkey('f4',function(){
window.location = BASE_URL + '/suppliers/index';
});

$(window).jkey('f5',function(){
window.location = BASE_URL + '/receivings/index';
});


$(window).jkey('f6',function(){
window.location = BASE_URL + '/sales/index';
});

$(window).jkey('f7',function(){
window.location = BASE_URL + '/employees/index';
});

$(window).jkey('f8',function(){
window.location = BASE_URL + '/config/index';
});

$(window).jkey('f9',function(){
window.location = BASE_URL + '/giftcards/index';
});

0 comments on commit 455d2f0

Please sign in to comment.