script.js 951 Bytes
Newer Older
1
$(function() {
2 3
	
	var avwUserEnvObj = new UserEnvironment();
4
	if(avwUserEnvObj.os == 'ipad' || avwUserEnvObj.os == 'android'){
5
		//
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
	}else{
		// placement examples
		$('.home').powerTip({placement: 's'});
		$('.back').powerTip({placement: 's'});
		$('.bmList').powerTip({placement: 's'});
		$('.bmAdd').powerTip({placement: 's'});
		$('.index').powerTip({placement: 's'});
		$('.copy').powerTip({placement: 's'});
		$('.memoDisplay').powerTip({placement: 's'});
		$('.memoAdd').powerTip({placement: 's'});
		$('.marking').powerTip({placement: 's'});
		$('.markingToolbar').powerTip({placement: 's'});
	
		$('.begin').powerTip({placement: 'n'});
		$('.prev').powerTip({placement: 'n'});
		$('.next').powerTip({placement: 'n'});
		$('.last').powerTip({placement: 'n'});
		$('.expansion').powerTip({placement: 'n'});
		$('.fit').powerTip({placement: 'n'});
		$('.reduction').powerTip({placement: 'n'});
		$('.toolbar').powerTip({placement: 'n'});
	}
});