Showing with 2 additions and 2 deletions.
  1. +1 −1 docs/demos/_assets/js/jqm-demos.js
  2. +1 −1 docs/demos/swipe/swipe-list.html
@@ -116,7 +116,7 @@ $.fn.viewSourceCode = function() {
if ( self.attr( "data-demo-html" ) === "true" ) {
data = self.html();
} else {
data = $( markupId ).html();
data = $( self.attr( "data-demo-html" ) ).html();
}
sources.push( { title: "HTML", theme: "b", brush: "xml", data: data } );
}
@@ -74,7 +74,7 @@
});
// Remove active state and unbind when the cancel button is clicked
$( "#confirm #cancel" ).on( "click", function() {
listitem.removeClass( $.mobile.activeBtnClass );
listitem.removeClass( "ui-btn-down-d" );
$( "#confirm #yes" ).off();
});
}