aboutsummaryrefslogtreecommitdiffstats
path: root/demos/droppable
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-21 00:10:45 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-21 08:06:23 -0400
commitf43311da932d8ec16ad91c14afefc84cfb810797 (patch)
tree07151d6784fabc07e2973206c069c2063d8eee3d /demos/droppable
parent3b99bf4cc848ee5faf5f3f0d6483f2fa03e5f969 (diff)
downloadjquery-ui-f43311da932d8ec16ad91c14afefc84cfb810797.tar.gz
jquery-ui-f43311da932d8ec16ad91c14afefc84cfb810797.zip
Droppable: Style updates
Ref #14246 Ref gh-1588
Diffstat (limited to 'demos/droppable')
-rw-r--r--demos/droppable/photo-manager.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/demos/droppable/photo-manager.html b/demos/droppable/photo-manager.html
index 2b324c1e9..d576e6524 100644
--- a/demos/droppable/photo-manager.html
+++ b/demos/droppable/photo-manager.html
@@ -22,11 +22,11 @@
<script src="../../external/requirejs/require.js"></script>
<script src="../bootstrap.js" data-modules="dialog">
- // there's the gallery and the trash
+ // There's the gallery and the trash
var $gallery = $( "#gallery" ),
$trash = $( "#trash" );
- // let the gallery items be draggable
+ // Let the gallery items be draggable
$( "li", $gallery ).draggable({
cancel: "a.ui-icon", // clicking an icon won't initiate dragging
revert: "invalid", // when not dropped, the item will revert back to its initial position
@@ -35,7 +35,7 @@
cursor: "move"
});
- // let the trash be droppable, accepting the gallery items
+ // Let the trash be droppable, accepting the gallery items
$trash.droppable({
accept: "#gallery > li",
classes: {
@@ -46,7 +46,7 @@
}
});
- // let the gallery be droppable as well, accepting items from the trash
+ // Let the gallery be droppable as well, accepting items from the trash
$gallery.droppable({
accept: "#trash li",
classes: {
@@ -57,7 +57,7 @@
}
});
- // image deletion function
+ // Image deletion function
var recycle_icon = "<a href='link/to/recycle/script/when/we/have/js/off' title='Recycle this image' class='ui-icon ui-icon-refresh'>Recycle image</a>";
function deleteImage( $item ) {
$item.fadeOut(function() {
@@ -75,7 +75,7 @@
});
}
- // image recycle function
+ // Image recycle function
var trash_icon = "<a href='link/to/trash/script/when/we/have/js/off' title='Delete this image' class='ui-icon ui-icon-trash'>Delete image</a>";
function recycleImage( $item ) {
$item.fadeOut(function() {
@@ -93,7 +93,7 @@
});
}
- // image preview function, demonstrating the ui.dialog used as a modal window
+ // Image preview function, demonstrating the ui.dialog used as a modal window
function viewLargerImage( $link ) {
var src = $link.attr( "href" ),
title = $link.siblings( "img" ).attr( "alt" ),
@@ -114,7 +114,7 @@
}
}
- // resolve the icons behavior with event delegation
+ // Resolve the icons behavior with event delegation
$( "ul.gallery > li" ).on( "click", function( event ) {
var $item = $( this ),
$target = $( event.target );