Skip to content

Commit 5787c7c

Browse files
Removed drag and drop from postmaster.
1 parent cf156bd commit 5787c7c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Destiny Item Manager",
4-
"version": "3.0.3",
4+
"version": "3.0.4",
55
"description": "Robust interface to manage gear, weapons, and items in destiny.",
66
"icons": {
77
"16": "icon16.png",

app/scripts/store/dimStoreItem.directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
'item': '=itemData'
2121
},
2222
template: [
23-
'<div ui-draggable="{{ (vm.item.type !== \'Postmaster\') }}" id="item-{{:: $id }}" drag-channel="{{ vm.item.type }}" title="{{ vm.item.primStat.value }} {{ vm.item.name }}" alt="{{ vm.item.primStat.value }} {{ vm.item.name }}" drag="\'item-\' + $id" class="item" ng-class="{ \'search-hidden\': !vm.item.visible, \'complete\': vm.item.complete}">',
23+
'<div ui-draggable="{{ (vm.item.type !== \'Lost Items\') && (vm.item.type !== \'Messages\') }}" id="item-{{:: $id }}" drag-channel="{{ vm.item.type }}" title="{{ vm.item.primStat.value }} {{ vm.item.name }}" alt="{{ vm.item.primStat.value }} {{ vm.item.name }}" drag="\'item-\' + $id" class="item" ng-class="{ \'search-hidden\': !vm.item.visible, \'complete\': vm.item.complete}">',
2424
' <div ui-draggable="false" class="img" style="background-size: 44px 44px; background-image: url({{ vm.item.icon.slice(1) }})" ng-click="vm.clicked(vm.item, $event)"></div>',
2525
' <div ui-draggable="false" class="counter" ng-if="vm.item.amount > 1">{{ vm.item.amount }}</div>',
2626
' <div ui-draggable="false" class="damage-type" ng-if="vm.item.sort === \'Weapons\'" ng-class="\'damage-\' + vm.item.dmg"></div>',

app/views/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div dim-about dim-click-anywhere-but-here="app.closeLoadoutPopup()">
22
<h3>About Destiny Item Manager (DIM)</h3>
3-
<h4>Version 3.0.3</h4>
3+
<h4>Version 3.0.4</h4>
44
<p>
55
DIM is built upon the same services used by Bungie.net and the Destiny Companion App. DIM can access the items within your Guardians inventory and the Vault for both PlayStation and Xbox, if you have played on either platforms.
66
</p>

0 commit comments

Comments
 (0)