diff options
author | Richard Worth <rdworth@gmail.com> | 2008-11-18 02:55:25 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-11-18 02:55:25 +0000 |
commit | 29f7dc9a2c078495f6a0ed13c531733146528fb4 (patch) | |
tree | 5d56f5a7ecba3c8173de3322c2a85bfecf61348b /demos/real-world | |
parent | ce69e7ced4e8786ca5164372007c48a11ba90e72 (diff) | |
download | jquery-ui-29f7dc9a2c078495f6a0ed13c531733146528fb4.tar.gz jquery-ui-29f7dc9a2c078495f6a0ed13c531733146528fb4.zip |
Removed all trailing whitespace from .js and .html files
Diffstat (limited to 'demos/real-world')
-rw-r--r-- | demos/real-world/effects/demo.js | 40 | ||||
-rw-r--r-- | demos/real-world/effects/index.html | 46 | ||||
-rw-r--r-- | demos/real-world/image-cropper/index.html | 8 | ||||
-rw-r--r-- | demos/real-world/layout/demo.js | 30 | ||||
-rw-r--r-- | demos/real-world/layout/index.html | 30 | ||||
-rw-r--r-- | demos/real-world/photo-manager/index.html | 4 | ||||
-rw-r--r-- | demos/real-world/photo-manager/js/demo.js | 10 | ||||
-rw-r--r-- | demos/real-world/photo-manager/js/jquery.livequery.js | 76 | ||||
-rw-r--r-- | demos/real-world/range-interface/index.html | 4 | ||||
-rw-r--r-- | demos/real-world/splitpane/index.html | 22 |
10 files changed, 135 insertions, 135 deletions
diff --git a/demos/real-world/effects/demo.js b/demos/real-world/effects/demo.js index b52b23726..f383199c2 100644 --- a/demos/real-world/effects/demo.js +++ b/demos/real-world/effects/demo.js @@ -1,5 +1,5 @@ $(document).ready(function() { - + $("div.effect") .hover(function() { $(this).addClass("hover"); @@ -7,16 +7,16 @@ $(document).ready(function() { $(this).removeClass("hover"); }) ; - - + + var effect = function(el, n, o) { - + $.extend(o, { easing: "easeOutQuint" }); - + $(el).bind("click", function() { - + $(this).addClass("current").hide(n, o, 1000, function() { var self = this; window.setTimeout(function() { @@ -24,42 +24,42 @@ $(document).ready(function() { },500); }); }); - + }; - + effect("#blindHorizontally", "blind", { direction: "horizontal" }); effect("#blindVertically", "blind", { direction: "vertical" }); - + effect("#bounce3times", "bounce", { times: 3 }); - + effect("#clipHorizontally", "clip", { direction: "horizontal" }); effect("#clipVertically", "clip", { direction: "vertical" }); - + effect("#dropDown", "drop", { direction: "down" }); effect("#dropUp", "drop", { direction: "up" }); effect("#dropLeft", "drop", { direction: "left" }); effect("#dropRight", "drop", { direction: "right" }); - + effect("#explode9", "explode", { }); effect("#explode36", "explode", { pieces: 36 }); - + effect("#fold", "fold", { size: 50 }); - + effect("#highlight", "highlight", { }); - + effect("#pulsate", "pulsate", { times: 2 }); - + effect("#puff", "puff", { times: 2 }); effect("#scale", "scale", { }); - + $("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); }); - + effect("#slideDown", "slide", { direction: "down" }); effect("#slideUp", "slide", { direction: "up" }); effect("#slideLeft", "slide", { direction: "left" }); effect("#slideRight", "slide", { direction: "right" }); - + $("#transfer").bind("click", function() { $(this).addClass("current").effect("transfer", { to: "div:eq(0)" }, 1000, function() { $(this).removeClass("current"); }); }); - + });
\ No newline at end of file diff --git a/demos/real-world/effects/index.html b/demos/real-world/effects/index.html index 4b117924c..b05d2f010 100644 --- a/demos/real-world/effects/index.html +++ b/demos/real-world/effects/index.html @@ -4,10 +4,10 @@ <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>Effects Test Suite</title> <link rel="stylesheet" href="style.css" type="text/css" media="screen" title="no title" charset="utf-8" /> - + <script type="text/javascript" src="../../../jquery-1.2.6.js"></script> <script type="text/javascript" src="../../../ui/effects.core.js"></script> - + <script type="text/javascript" src="../../../ui/effects.blind.js"></script> <script type="text/javascript" src="../../../ui/effects.bounce.js"></script> <script type="text/javascript" src="../../../ui/effects.clip.js"></script> @@ -20,7 +20,7 @@ <script type="text/javascript" src="../../../ui/effects.shake.js"></script> <script type="text/javascript" src="../../../ui/effects.slide.js"></script> <script type="text/javascript" src="../../../ui/effects.transfer.js"></script> - + <script type="text/javascript" src="demo.js"></script> </head> <body> @@ -38,121 +38,121 @@ <p>Blind vertically</p> </div> </li> - + <li> <div class="effect" id="bounce3times"> <p>Bounce 3 times</p> </div> </li> - + <li> <div class="effect" id="clipHorizontally"> <p>Clip horizontally</p> </div> </li> - + <li> <div class="effect" id="clipVertically"> <p>Clip vertically</p> </div> </li> - + <li> <div class="effect" id="dropDown"> <p>Drop down</p> </div> </li> - + <li> <div class="effect" id="dropUp"> <p>Drop up</p> </div> </li> - + <li> <div class="effect" id="dropLeft"> <p>Drop left</p> </div> </li> - + <li> <div class="effect" id="dropRight"> <p>Drop right</p> </div> </li> - + <li> <div class="effect" id="explode9"> <p>Explode in 9 pieces</p> </div> </li> - + <li> <div class="effect" id="explode36"> <p>Explode in 36 pieces</p> </div> </li> - + <li> <div class="effect" id="fold"> <p>Fold</p> </div> </li> - + <li> <div class="effect" id="highlight"> <p>Highlight</p> </div> </li> - + <li> <div class="effect" id="pulsate"> <p>Pulsate 2 times</p> </div> </li> - + <li> <div class="effect" id="puff"> <p>Puff</p> </div> </li> - + <li> <div class="effect" id="scale"> <p>Scale</p> </div> </li> - + <li> <div class="effect" id="shake"> <p>Shake</p> </div> </li> - + <li> <div class="effect" id="slideDown"> <p>Slide down</p> </div> </li> - + <li> <div class="effect" id="slideUp"> <p>Slide up</p> </div> </li> - + <li> <div class="effect" id="slideLeft"> <p>Slide left</p> </div> </li> - + <li> <div class="effect" id="slideRight"> <p>Slide right</p> </div> </li> - + <li> <div class="effect" id="transfer"> <p>Transfer to first element</p> diff --git a/demos/real-world/image-cropper/index.html b/demos/real-world/image-cropper/index.html index c7e60fe19..5c6f2c9de 100644 --- a/demos/real-world/image-cropper/index.html +++ b/demos/real-world/image-cropper/index.html @@ -9,7 +9,7 @@ <script type="text/javascript" src="../../../ui/ui.core.js"></script> <script type="text/javascript" src="../../../ui/ui.resizable.js"></script> <script type="text/javascript" src="../../../ui/ui.draggable.js"></script> - + <script type="text/javascript" src="../../../ui/effects.core.js"></script> <script type="text/javascript" src="../../../ui/effects.bounce.js"></script> <script type="text/javascript" src="../../../ui/effects.scale.js"></script> @@ -112,7 +112,7 @@ //animate:true, handles: 'all', - + knobHandles: true, //transparent: true, @@ -127,9 +127,9 @@ resize: function(event, ui) { var self = $(this).data("resizable"); - + this.style.backgroundPosition = '-' + (self.position.left) + 'px -' + (self.position.top) + 'px'; - + $("#log-top").html(self.position.top+"px"); $("#log-left").html(self.position.left+"px"); diff --git a/demos/real-world/layout/demo.js b/demos/real-world/layout/demo.js index 3696c58d1..ba854e850 100644 --- a/demos/real-world/layout/demo.js +++ b/demos/real-world/layout/demo.js @@ -6,28 +6,28 @@ .filter(':first').addClass('first').find('.up').addClass('disabled').end().end() .filter(':last').addClass('last').find('.down').addClass('disabled').end().end(); }; - + function moveUpDown() { var link = $(this), dl = link.parents('dl'), prev = dl.prev('dl'), next = dl.next('dl'); - + if(link.is('.up') && prev.length > 0) dl.insertBefore(prev); - + if(link.is('.down') && next.length > 0) dl.insertAfter(next); - + updateUpDown(dl.parent()); }; - + function addControls() { $(this).append('<span class="options"><a class="up">up</a><a class="down">down</a></span>') .find('a.up, a.down').bind('click', moveUpDown); updateUpDown($(this).parents(".ui-sortable:first")); } - + var counter = 1; function addItem() { var sortable = $(this).parents('.ui-sortable:first'); @@ -38,11 +38,11 @@ sortable.append(html).sortable('refresh').find('a.up, a.down').bind('click', moveUpDown); updateUpDown(sortable); }; - + function emptyTrashCan(item) { item.remove(); }; - + function sortableChange(event, ui) { if(ui.sender){ var w = ui.element.width(); @@ -50,7 +50,7 @@ ui.helper.css("width",ui.element.children().width()); } }; - + function sortableUpdate(event, ui) { if(ui.element[0].id == 'trashcan'){ emptyTrashCan(ui.item); @@ -60,22 +60,22 @@ updateUpDown(ui.sender[0]); } }; - + $(document).ready(function(){ var els = ['#header', '#content', '#sidebar', '#footer', '#trashcan']; var $els = $(els.toString()); - + $('h2', $els.slice(0,-1)).append('<span class="options"><a class="add">add</a></span>'); $('dt', $els).each(addControls); //$('dt', $els).append('<span class="options"><a class="up">up</a><a class="down">down</a></span>'); - + $('a.add').bind('click', addItem); //$('a.up, a.down').bind('click', moveUpDown); - + $els.each(function(){ updateUpDown(this); }); - + $els.sortable({ items: '> dl', handle: 'dt', @@ -101,7 +101,7 @@ handle: 'dt' }) }); - + $(window).bind('load',function(){ setTimeout(function(){ // fixes the weird scrolling in IE while killing the fade diff --git a/demos/real-world/layout/index.html b/demos/real-world/layout/index.html index deacea119..62ee91e27 100644 --- a/demos/real-world/layout/index.html +++ b/demos/real-world/layout/index.html @@ -3,27 +3,27 @@ <head> <title>UI Sortable: Layout Demo</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> - + <meta name="title" content="UI Sortable: Layout Demo" /> <meta name="description" content="A sortable layout created with the jQuery UI suite" /> - + <meta name="author" content="Joan Piedra" /> <meta name="author-url" content="http://www.joanpiedra.com/" /> <meta name="author-url" content="http://www.justaquit.com/" /> <meta name="author-url" content="http://jquery.com/" /> - + <link rel="shortcut icon" href="http://jquery.com/favicon.ico" /> <link rel="icon" href="http://jquery.com/favicon.ico" type="image/x-icon" /> - + <link rel="stylesheet" href="demo.css" type="text/css" media="screen" /> <!--[if IE]> <link rel="stylesheet" href="demo-ie.css" type="text/css" media="screen" /> <![endif]--> </head> - + <body id="uidemo"> <h1>UI Sortable: <em>Layout demo</em></h1> - + <div id="container"> <div id="header" class="ui-sortable"> <h2>Header</h2> @@ -32,7 +32,7 @@ <dd>Main Navigation</dd> </dl> </div> - + <div id="content" class="ui-sortable"> <h2>Content</h2> <dl class="sort"> @@ -40,7 +40,7 @@ <dd>Main blog post</dd> </dl> </div> - + <div id="sidebar" class="ui-sortable"> <h2>Sidebar</h2> <dl class="sort"> @@ -56,9 +56,9 @@ <dd>Random Links</dd> </dl> </div> - + <div class="clear"></div> - + <div id="footer" class="ui-sortable"> <h2>Footer</h2> <dl class="sort"> @@ -67,7 +67,7 @@ </dl> </div> </div> - + <div id="meta"> <div id="components" class="ui-sortable"> <h2>Components</h2> @@ -81,20 +81,20 @@ <dd>Caption</dd> </dl> </div> - + <div id="trashcan" class="ui-sortable"> <h2>Trash can</h2> <p>Drag modules here to delete them.</p> </div> </div> - + <div class="clear"></div> <div id="overlay"> <div id="preloader"><img src="loader.gif" alt="" /></div> </div> - + <script type="text/javascript" src="../../../jquery-1.2.6.js"></script> - + <script type="text/javascript" src="../../../ui/ui.core.js"></script> <script type="text/javascript" src="../../../ui/ui.draggable.js"></script> <script type="text/javascript" src="../../../ui/ui.droppable.js"></script> diff --git a/demos/real-world/photo-manager/index.html b/demos/real-world/photo-manager/index.html index f0601259d..cca6de9a9 100644 --- a/demos/real-world/photo-manager/index.html +++ b/demos/real-world/photo-manager/index.html @@ -125,8 +125,8 @@ <div style="margin: 5px; padding: 5px;min-height:20px" class="ui-slider-2 ui-slider" id="sliderSize"> <a style="cursor: default;" href="javascript:void(0)"> <div class="ui-slider-handle" style="left: 150px;min-height:20px"></div> - </a> - </div> + </a> + </div> </div> <div class="box" id="trash"> <h2>Trash (drag me back)</h2> diff --git a/demos/real-world/photo-manager/js/demo.js b/demos/real-world/photo-manager/js/demo.js index 1d57bb9a9..9f9308ee9 100644 --- a/demos/real-world/photo-manager/js/demo.js +++ b/demos/real-world/photo-manager/js/demo.js @@ -117,15 +117,15 @@ $(window).bind('load', function() { .displayBox(); return false; }); - - + + var sliderChange = function(event, ui){ $('.img_content').each(function(index, item){ var _new = 1.44 * $('#sliderSize').slider("value"); - + $(this).css("width", _new+'px') .parent().css("width", (_new+16)+'px'); - + }); } $('#sliderSize').slider({ @@ -136,7 +136,7 @@ $(window).bind('load', function() { slide : sliderChange, change : sliderChange }); - + }); function createGalleryItem(img) { diff --git a/demos/real-world/photo-manager/js/jquery.livequery.js b/demos/real-world/photo-manager/js/jquery.livequery.js index dfed9fe75..5bab175ee 100644 --- a/demos/real-world/photo-manager/js/jquery.livequery.js +++ b/demos/real-world/photo-manager/js/jquery.livequery.js @@ -8,15 +8,15 @@ */ (function($) { - + $.extend($.fn, { livequery: function(type, fn, fn2) { var self = this, q; - + // Handle different call patterns if ($.isFunction(type)) fn2 = fn, fn = type, type = undefined; - + // See if Live Query already exists $.each( $.livequery.queries, function(i, query) { if ( self.selector == query.selector && self.context == query.context && @@ -24,34 +24,34 @@ $.extend($.fn, { // Found the query, exit the each loop return (q = query) && false; }); - + // Create new Live Query if it wasn't found q = q || new $.livequery(this.selector, this.context, type, fn, fn2); - + // Make sure it is running q.stopped = false; - + // Run it $.livequery.run( q.id ); - + // Contnue the chain return this; }, - + expire: function(type, fn, fn2) { var self = this; - + // Handle different call patterns if ($.isFunction(type)) fn2 = fn, fn = type, type = undefined; - + // Find the Live Query based on arguments and stop it $.each( $.livequery.queries, function(i, query) { if ( self.selector == query.selector && self.context == query.context && (!type || type == query.type) && (!fn || fn.$lqguid == query.fn.$lqguid) && (!fn2 || fn2.$lqguid == query.fn2.$lqguid) && !this.stopped ) $.livequery.stop(query.id); }); - + // Continue the chain return this; } @@ -65,14 +65,14 @@ $.livequery = function(selector, context, type, fn, fn2) { this.fn2 = fn2; this.elements = []; this.stopped = false; - + // The id is the index of the Live Query in $.livequery.queries this.id = $.livequery.queries.push(this)-1; - + // Mark the functions for matching later on fn.$lqguid = fn.$lqguid || $.livequery.guid++; if (fn2) fn2.$lqguid = fn2.$lqguid || $.livequery.guid++; - + // Return the Live Query return this; }; @@ -80,7 +80,7 @@ $.livequery = function(selector, context, type, fn, fn2) { $.livequery.prototype = { stop: function() { var query = this; - + if ( this.type ) // Unbind all bound events this.elements.unbind(this.type, this.fn); @@ -89,30 +89,30 @@ $.livequery.prototype = { this.elements.each(function(i, el) { query.fn2.apply(el); }); - + // Clear out matched elements this.elements = []; - + // Stop the Live Query from running until restarted this.stopped = true; }, - + run: function() { // Short-circuit if stopped if ( this.stopped ) return; var query = this; - + var oEls = this.elements, els = $(this.selector, this.context), nEls = els.not(oEls); - + // Set elements to the latest set of matched elements this.elements = els; - + if (this.type) { // Bind events to newly matched elements nEls.bind(this.type, this.fn); - + // Unbind events to elements no longer matched if (oEls.length > 0) $.each(oEls, function(i, el) { @@ -125,7 +125,7 @@ $.livequery.prototype = { nEls.each(function() { query.fn.apply(this); }); - + // Call the second function for elements no longer matched if ( this.fn2 && oEls.length > 0 ) $.each(oEls, function(i, el) { @@ -142,7 +142,7 @@ $.extend($.livequery, { queue: [], running: false, timeout: null, - + checkQueue: function() { if ( $.livequery.running && $.livequery.queue.length ) { var length = $.livequery.queue.length; @@ -151,41 +151,41 @@ $.extend($.livequery, { $.livequery.queries[ $.livequery.queue.shift() ].run(); } }, - + pause: function() { // Don't run anymore Live Queries until restarted $.livequery.running = false; }, - + play: function() { // Restart Live Queries $.livequery.running = true; // Request a run of the Live Queries $.livequery.run(); }, - + registerPlugin: function() { $.each( arguments, function(i,n) { // Short-circuit if the method doesn't exist if (!$.fn[n]) return; - + // Save a reference to the original method var old = $.fn[n]; - + // Create a new method $.fn[n] = function() { // Call the original method var r = old.apply(this, arguments); - + // Request a run of the Live Queries $.livequery.run(); - + // Return the original methods result return r; } }); }, - + run: function(id) { if (id != undefined) { // Put the particular Live Query in the queue if it doesn't already exist @@ -198,13 +198,13 @@ $.extend($.livequery, { if ( $.inArray(id, $.livequery.queue) < 0 ) $.livequery.queue.push( id ); }); - + // Clear timeout if it already exists if ($.livequery.timeout) clearTimeout($.livequery.timeout); // Create a timeout to check the queue and actually run the Live Queries $.livequery.timeout = setTimeout($.livequery.checkQueue, 20); }, - + stop: function(id) { if (id != undefined) // Stop are particular Live Query @@ -231,20 +231,20 @@ var init = $.prototype.init; $.prototype.init = function(a,c) { // Call the original init and save the result var r = init.apply(this, arguments); - + // Copy over properties if they exist already if (a && a.selector) r.context = a.context, r.selector = a.selector; - + // Set properties if ( typeof a == 'string' ) r.context = c || document, r.selector = a; - + // Return the result return r; }; // Give the init function the jQuery prototype for later instantiation (needed after Rev 4091) $.prototype.init.prototype = $.prototype; - + })(jQuery);
\ No newline at end of file diff --git a/demos/real-world/range-interface/index.html b/demos/real-world/range-interface/index.html index 7fbf61cad..a32501a46 100644 --- a/demos/real-world/range-interface/index.html +++ b/demos/real-world/range-interface/index.html @@ -57,7 +57,7 @@ <div id="col-1"> <div id="slider1" class="ui-slider-2"> <div class="ui-slider-handle"></div> - <div class="ui-slider-handle"></div> + <div class="ui-slider-handle"></div> <span class="label-1">0</span> <span class="label-2">100</span> </div> @@ -76,7 +76,7 @@ <option>bounce</option> </select> </div> - + <div id="col-2"> <div>0</div> <div>10</div> diff --git a/demos/real-world/splitpane/index.html b/demos/real-world/splitpane/index.html index 21f204a85..cd0dd8723 100644 --- a/demos/real-world/splitpane/index.html +++ b/demos/real-world/splitpane/index.html @@ -7,7 +7,7 @@ <!-- jQuery --> <script type="text/javascript" src="../../../jquery-1.2.6.js"></script> - + <!-- jQuery UI --> <script type="text/javascript" src="../../../ui/ui.core.js"></script> <script type="text/javascript" src="../../../ui/ui.resizable.js"></script> @@ -26,9 +26,9 @@ <span class="ui-toolbar-item-hide-icon"></span> <span>jQuery UI Resizable SplitPanel</span> </div> <table id="container" cellpadding="0" cellspacing="0" border="0"> - + <tr> - + <td class="ui-split-side-box"> <div class="ui-split-side"> <ul id="component-links"> @@ -43,17 +43,17 @@ </ul> </div> </td> - - + + <td class="ui-split-main-box"> <div class="ui-split-main1"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vestibulum commodo mollis tortor. Ut dapibus turpis consequat quam. Nulla lacinia. Donec nunc. Donec sollicitudin. Vivamus orci. Pellentesque tempus velit vitae odio. Maecenas enim arcu, volutpat ac, viverra id, bibendum eu, felis. Vestibulum imperdiet arcu. Ut nisi. Cras vel lectus consectetuer mauris luctus ultrices. Duis fringilla pellentesque sapien. <br><br> Cras tristique justo vel metus. Pellentesque dolor libero, ullamcorper ac, vehicula eget, porttitor at, dui. Ut a nibh. Nunc sit amet turpis. Aenean diam dui, consequat vel, scelerisque id, accumsan a, lectus. Duis ultrices, enim vitae pharetra tincidunt, elit nunc sollicitudin felis, dapibus pellentesque urna velit ut quam. Donec scelerisque vehicula dolor. Suspendisse lectus dui, posuere sit amet, sagittis nec, vulputate in, libero. Morbi tempus sagittis est. Phasellus in nisi. Sed a ligula. Vivamus condimentum quam non nibh. Fusce pellentesque, neque ac scelerisque luctus, leo elit bibendum elit, in rutrum leo erat tristique felis. Etiam consequat fringilla eros. Nullam neque. Aenean mollis, odio at consectetuer sollicitudin, tortor lorem facilisis nunc, sit amet condimentum lectus libero convallis dolor. Vivamus quis risus. - + </div> </td> - + <td class="ui-split-main-box"> <div class="ui-split-main2"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vestibulum commodo mollis tortor. Ut dapibus turpis consequat quam. Nulla lacinia. Donec nunc. Donec sollicitudin. Vivamus orci. Pellentesque tempus velit vitae odio. Maecenas enim arcu, volutpat ac, viverra id, bibendum eu, felis. Vestibulum imperdiet arcu. Ut nisi. Cras vel lectus consectetuer mauris luctus ultrices. Duis fringilla pellentesque sapien. @@ -61,7 +61,7 @@ Cras tristique justo vel metus. Pellentesque dolor libero, ullamcorper ac, vehicula eget, porttitor at, dui. Ut a nibh. Nunc sit amet turpis. Aenean diam dui, consequat vel, scelerisque id, accumsan a, lectus. Duis ultrices, enim vitae pharetra tincidunt, elit nunc sollicitudin felis, dapibus pellentesque urna velit ut quam. Donec scelerisque vehicula dolor. Suspendisse lectus dui, posuere sit amet, sagittis nec, vulputate in, libero. Morbi tempus sagittis est. Phasellus in nisi. Sed a ligula. Vivamus condimentum quam non nibh. Fusce pellentesque, neque ac scelerisque luctus, leo elit bibendum elit, in rutrum leo erat tristique felis. Etiam consequat fringilla eros. Nullam neque. Aenean mollis, odio at consectetuer sollicitudin, tortor lorem facilisis nunc, sit amet condimentum lectus libero convallis dolor. Vivamus quis risus. </div> </td> - + <td class="ui-split-main-box"> <div class="ui-split-main3"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vestibulum commodo mollis tortor. Ut dapibus turpis consequat quam. Nulla lacinia. Donec nunc. Donec sollicitudin. Vivamus orci. Pellentesque tempus velit vitae odio. Maecenas enim arcu, volutpat ac, viverra id, bibendum eu, felis. Vestibulum imperdiet arcu. Ut nisi. Cras vel lectus consectetuer mauris luctus ultrices. Duis fringilla pellentesque sapien. @@ -69,9 +69,9 @@ Cras tristique justo vel metus. Pellentesque dolor libero, ullamcorper ac, vehicula eget, porttitor at, dui. Ut a nibh. Nunc sit amet turpis. Aenean diam dui, consequat vel, scelerisque id, accumsan a, lectus. Duis ultrices, enim vitae pharetra tincidunt, elit nunc sollicitudin felis, dapibus pellentesque urna velit ut quam. Donec scelerisque vehicula dolor. Suspendisse lectus dui, posuere sit amet, sagittis nec, vulputate in, libero. Morbi tempus sagittis est. Phasellus in nisi. Sed a ligula. Vivamus condimentum quam non nibh. Fusce pellentesque, neque ac scelerisque luctus, leo elit bibendum elit, in rutrum leo erat tristique felis. Etiam consequat fringilla eros. Nullam neque. Aenean mollis, odio at consectetuer sollicitudin, tortor lorem facilisis nunc, sit amet condimentum lectus libero convallis dolor. Vivamus quis risus. </div> </td> - + </tr> - + </table> </div> <script type="text/javascript"> @@ -82,7 +82,7 @@ minWidth: 200, maxWidth: 800 }); - + $('div.ui-split-side').resizable({ handles: 'e', proxy: 'proxy', |