diff --git a/client/core/src/drop-down/drop-down.html b/client/core/src/drop-down/drop-down.html
index 4b354ae623..c448520fa9 100644
--- a/client/core/src/drop-down/drop-down.html
+++ b/client/core/src/drop-down/drop-down.html
@@ -1,3 +1,3 @@
-
- - {{item.name}}
+
\ No newline at end of file
diff --git a/client/core/src/drop-down/drop-down.js b/client/core/src/drop-down/drop-down.js
index c40d286726..b9c7b6b155 100644
--- a/client/core/src/drop-down/drop-down.js
+++ b/client/core/src/drop-down/drop-down.js
@@ -4,7 +4,6 @@ import './style.scss';
export default class DropDown {
constructor($element, $window) {
this.$element = $element;
- this.$window = $window;
}
$onChanges(changesObj) {
if (changesObj.show && changesObj.top && changesObj.top.currentValue) {
@@ -12,7 +11,7 @@ export default class DropDown {
}
}
}
-DropDown.$inject = ['$element', '$window'];
+DropDown.$inject = ['$element'];
module.component('vnDropDown', {
template: require('./drop-down.html'),
diff --git a/client/core/src/icon-menu/icon-menu.js b/client/core/src/icon-menu/icon-menu.js
index 2a521ce4f2..9e5e52794c 100644
--- a/client/core/src/icon-menu/icon-menu.js
+++ b/client/core/src/icon-menu/icon-menu.js
@@ -37,7 +37,8 @@ export default class IconMenu {
this.$element.bind('mouseover', e => {
this.$timeout(() => {
this.showDropDown = true;
- this.pos = e.target.getBoundingClientRect();
+ if (e.target.nodeName === 'BUTTON')
+ this.pos = e.target.getBoundingClientRect();
});
});
diff --git a/client/production/src/index/index.html b/client/production/src/index/index.html
index 44e0d3f5a8..f9188889cd 100644
--- a/client/production/src/index/index.html
+++ b/client/production/src/index/index.html
@@ -3,13 +3,9 @@
Localizador
-
-
+
+
+
-
-
- {{::ticket.city | ucwords}}
- {{::ticket.province | ucwords}}
- {{::ticket.client}}
- {{::ticket.salePerson | ucwords}}
-
-
\ No newline at end of file