Skip to content
Snippets Groups Projects
Commit 447b1554 authored by Demian Katz's avatar Demian Katz
Browse files

jslint style fixes (global directive for path variable defined externally; put...

jslint style fixes (global directive for path variable defined externally; put function definition before call to that function for clarity).
parent 0ea78902
No related merge requests found
$('.results-page').live('pageshow', function() { /*global path*/
checkItemStatuses();
});
function checkItemStatuses() { function checkItemStatuses() {
var id = $.map($('.ajaxItemId'), function(i) { var id = $.map($('.ajaxItemId'), function(i) {
...@@ -47,3 +45,7 @@ function checkItemStatuses() { ...@@ -47,3 +45,7 @@ function checkItemStatuses() {
}); });
} }
} }
$('.results-page').live('pageshow', function() {
checkItemStatuses();
});
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment