aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/autocomplete/multiple-remote.html2
-rw-r--r--demos/dialog/modal-message.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/autocomplete/multiple-remote.html b/demos/autocomplete/multiple-remote.html
index e1babda4a..6b37ab93a 100644
--- a/demos/autocomplete/multiple-remote.html
+++ b/demos/autocomplete/multiple-remote.html
@@ -17,7 +17,7 @@
return val.split( /,\s*/ );
}
function extractLast( term ) {
- return split( termĀ ).pop();
+ return split( term ).pop();
}
$( "#birds" )
diff --git a/demos/dialog/modal-message.html b/demos/dialog/modal-message.html
index 891959e9e..a26f3a2b5 100644
--- a/demos/dialog/modal-message.html
+++ b/demos/dialog/modal-message.html
@@ -12,7 +12,7 @@
modal: true,
buttons: {
Ok: function() {
- $( thisĀ ).dialog( "close" );
+ $( this ).dialog( "close" );
}
}
});