add in comment about the backup being required
parent
9aff996748
commit
dedaf591d2
Binary file not shown.
|
@ -206,7 +206,6 @@ $(function(){
|
||||||
setSortOrder();
|
setSortOrder();
|
||||||
var displayContent = $("#tooltipviews").html();
|
var displayContent = $("#tooltipviews").html();
|
||||||
$("#tooltipviews").attr("data-backup",displayContent);
|
$("#tooltipviews").attr("data-backup",displayContent);
|
||||||
$("#tooltipviews").html(""); // Because I'm using id's instead of classes
|
|
||||||
}
|
}
|
||||||
instance.content(displayContent);
|
instance.content(displayContent);
|
||||||
},
|
},
|
||||||
|
@ -215,7 +214,7 @@ $(function(){
|
||||||
$(".sortButton,.dirButton").click(function() { changeSortOrder(this.id,$(this).attr("class")); });
|
$(".sortButton,.dirButton").click(function() { changeSortOrder(this.id,$(this).attr("class")); });
|
||||||
},
|
},
|
||||||
functionAfter: function(instance,helper) {
|
functionAfter: function(instance,helper) {
|
||||||
$("#tooltipviews").html($("#tooltipviews").attr("data-backup"));
|
$("#tooltipviews").html($("#tooltipviews").attr("data-backup"));
|
||||||
setSortOrder();
|
setSortOrder();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue