Skip to content
This repository has been archived by the owner on Feb 13, 2021. It is now read-only.

Commit

Permalink
fix inventory/TransactionRowView
Browse files Browse the repository at this point in the history
  • Loading branch information
ReAnnannanna committed May 3, 2015
1 parent 0667e93 commit 74c7633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plug-modules.js
Original file line number Diff line number Diff line change
Expand Up @@ -1220,10 +1220,10 @@ var plugModules = {
functionContains(m.prototype.render, 'GET_USER_TRANSACTIONS') &&
this.isInSameNamespace(name, 'plug/views/users/inventory/InventoryView');
}).needs('plug/views/users/inventory/InventoryView'),
'plug/views/users/inventory/TransactionRowView': function (m) {
'plug/views/users/inventory/TransactionRowView': new SimpleMatcher(function (m, name) {
return isView(m) && m.prototype.className === 'row' &&
functionContains(m.prototype.render, 'boost3x');
},
this.isInSameNamespace(name, 'plug/views/users/inventory/InventoryView');
}).needs('plug/views/users/inventory/InventoryView'),
'plug/views/users/profile/ExperienceView': function (m) {
return isView(m) && m.prototype.className === 'experience section';
},
Expand Down

0 comments on commit 74c7633

Please sign in to comment.