4
|
1 $(function() {
|
|
2 $("#tabs" ).tabs();
|
|
3 });
|
|
4 $(function() {
|
|
5 $(".resizable" ).resizable();
|
|
6 });
|
|
7 $(document).ready(function(){
|
|
8 $('.zoomme').zoom();
|
|
9 $('#ex2').zoom({ on:'grab' });
|
|
10 $('#ex3').zoom({ on:'click' });
|
|
11 $('#ex4').zoom({ on:'toggle' });
|
|
12 $('.fancyiframe').iFrameResize({
|
|
13 heightCalculationMethod: 'max',
|
|
14 minHeight: 250,
|
|
15 scrolling: true,
|
|
16 checkOrigin: false,
|
|
17 bodyMargin: 15
|
|
18 });
|
|
19 $('.unfancyiframe').iFrameResize({
|
|
20 heightCalculationMethod: 'max',
|
|
21 scrolling: false,
|
|
22 checkOrigin: false
|
|
23 });
|
|
24 }); |