The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

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() {
checkItemStatuses();
});
/*global path*/
function checkItemStatuses() {
var id = $.map($('.ajaxItemId'), function(i) {
......@@ -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