clipbucket/upload/admin_area/styles/cbadmin/layout/index.html
Arslan Hassan 3ae9a56773 ADDED:New Player System
ADDED:Live Player Size Editor
ADDED:JQUERYUI
UPDATED:ADS SYSTEM
REMOVED :Unwanted JS files
Added : ClipBucket Modules as Plugins
Added : Jwplayer,ClipBucket and flowplayer
2009-10-03 10:38:28 +00:00

30 lines
No EOL
787 B
HTML

{literal}<style type="text/css">
#resizable { width: 200px; height: 150px; padding: 5px; }
#resizable h3 { text-align: center; margin: 0; }
</style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
maxHeight: 250,
maxWidth: 350,
minHeight: 150,
minWidth: 200
});
});
</script>
<div class="demo">
<div id="resizable" class="ui-widget-content">
<h3 class="ui-widget-header">Resize larger / smaller</h3>
</div>
</div><!-- End demo -->
<div class="demo-description">
<p>Limit the resizable element to a maximum or minimum height or width using the <code>maxHeight</code>, <code>maxWidth</code>, <code>minHeight</code>, and <code>minWidth</code> options.</p>
</div><!-- End demo-description -->
{/literal}