Remove unused variables

This commit is contained in:
Madhura Jayaratne 2013-12-10 07:01:09 +05:30
parent 737fd45858
commit c9880da2ae

View File

@ -195,7 +195,7 @@ $(function () {
buttonOptions[PMA_messages.strClose] = function () {
$(this).dialog("close");
};
var $dialog = $('<div/>')
$('<div/>')
.attr('id', 'unhideNavItemDialog')
.append(data.message)
.dialog({
@ -553,7 +553,7 @@ function PMA_showCurrentNavigation() {
* @return void
*/
function PMA_reloadNavigation(callback) {
var $throbber = $('#pma_navigation .throbber')
$('#pma_navigation .throbber')
.first()
.css({
'visibility' : 'visible',
@ -1146,7 +1146,7 @@ PMA_fastFilter.filter.prototype.request = function () {
if (data && data.results) {
var $listItem = $('<li />', {'class': 'moreResults'})
.appendTo(self.$this.find('li.fast_filter'));
var $link = $('<a />', {href: '#'})
$('<a />', {href: '#'})
.text(data.results)
.appendTo($listItem)
.click(function (event) {