major visual upgrade of buy tab, cleaned up xml files a bit, better reporting functionality for the buy tab, handled more corner cases in buy tab

This commit is contained in:
Manuel Simon Hirsig
2015-09-09 17:19:40 +02:00
parent 9a7d70a4fc
commit 99d184bfaa
8 changed files with 227 additions and 102 deletions
+11 -10
View File
@@ -23,7 +23,7 @@ end
-----------------------------------------
function Auctionator_Scan_Complete()
function Auctionator_Scan_Complete()
if state ~= STATE_IDLE then
if currentJob.onComplete then
currentJob.onComplete(scanData)
@@ -39,21 +39,22 @@ end
-----------------------------------------
function Auctionator_Scan_Abort()
if currentJob and currentJob.onAbort then
currentJob.onAbort()
if state ~= STATE_IDLE then
if currentJob and currentJob.onAbort then
currentJob.onAbort()
end
currentJob = nil
currentPage = nil
scanData = nil
state = STATE_IDLE
end
currentJob = nil
currentPage = nil
scanData = nil
state = STATE_IDLE
end
-----------------------------------------
function Auctionator_Scan_Start(job)
Auctionator_SetMessage("Scanning auctions ...")
if state ~= STATE_IDLE then