vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 function CT_BankFrame_UpdateSlotPrice()
2 local numSlots, full = GetNumBankSlots();
3 MoneyFrame_Update(this:GetName() .. "MoneyFrame", GetBankSlotCost(numSlots));
4 end
5  
6 CT_oldPurchaseSlot = PurchaseSlot;
7 function CT_newPurchaseSlot()
8 CT_BankFrame_AcceptFrame:Show();
9 end
10 PurchaseSlot = CT_newPurchaseSlot;