Guest User

Untitled

a guest
Feb 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. BankImportLineItemAllocationHelper = Class.create({
  2. new: function(bank_import_line_item_id, request) {
  3. bank_import_line_item = $('bank_import_line_item_' + bank_import_line_item_id)
  4. actions = $$('#' + bank_import_line_item.id + ' .actions').first()
  5. actions.hide()
  6. partial = request.responseText
  7. Element.insert(actions, {before: partial})
  8. }
  9. })
  10.  
  11. BankImportLineItemAllocationHelper = new BankImportLineItemAllocationHelper();
Add Comment
Please, Sign In to add comment