isobit-ui 0.0.322 → 0.0.325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -17
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.325
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2949,7 +2949,6 @@ var script$8 = {
|
|
|
2949
2949
|
return me.filterList[p.selectedIndex - 1];
|
|
2950
2950
|
},
|
|
2951
2951
|
load: function load(p, nou) {
|
|
2952
|
-
console.log('load item s in select');
|
|
2953
2952
|
var me = this;
|
|
2954
2953
|
var pa = me.$el.parentElement; //console.log(pa.name+'.antes de preguntar disabled options.load '+JSON.stringify(p));
|
|
2955
2954
|
|
|
@@ -5657,27 +5656,16 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
5657
5656
|
methods: {
|
|
5658
5657
|
bindLinks: function bindLinks(el, callback) {
|
|
5659
5658
|
var me = this;
|
|
5660
|
-
el = el ? el : me.$el;
|
|
5659
|
+
el = el ? el : me.$el; //console.log(el);
|
|
5660
|
+
//console.log("ENTLO")
|
|
5661
5661
|
|
|
5662
5662
|
if (el.querySelectorAll) {
|
|
5663
|
-
var a
|
|
5663
|
+
//var a=el.querySelectorAll('a:not(._),ion-item:not(._)');
|
|
5664
|
+
var a = el.querySelectorAll('a:not(._),ion-item:not(._)'); //console.log(a)
|
|
5664
5665
|
|
|
5665
5666
|
var f = function f(e) {
|
|
5666
|
-
if (me.cccc) {
|
|
5667
|
-
me.cccc();
|
|
5668
|
-
}
|
|
5669
|
-
|
|
5670
5667
|
if (callback) callback();
|
|
5671
5668
|
me.o(e);
|
|
5672
|
-
var el = this;
|
|
5673
|
-
|
|
5674
|
-
do {
|
|
5675
|
-
var event = new Event("close", {
|
|
5676
|
-
bubbles: true
|
|
5677
|
-
});
|
|
5678
|
-
el.dispatchEvent(event);
|
|
5679
|
-
el = el.parentNode;
|
|
5680
|
-
} while (el);
|
|
5681
5669
|
};
|
|
5682
5670
|
|
|
5683
5671
|
for (var i = 0; i < a.length; i++) {
|
|
@@ -5688,6 +5676,7 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
5688
5676
|
},
|
|
5689
5677
|
o: function o(e) {
|
|
5690
5678
|
var t = e.target;
|
|
5679
|
+
console.log([t]);
|
|
5691
5680
|
var me = this;
|
|
5692
5681
|
|
|
5693
5682
|
if (typeof e == 'string') {
|
|
@@ -5701,6 +5690,7 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
5701
5690
|
}
|
|
5702
5691
|
|
|
5703
5692
|
if (me.$route.path !== t) {
|
|
5693
|
+
console.log('path=' + t);
|
|
5704
5694
|
me.$router.push(t);
|
|
5705
5695
|
}
|
|
5706
5696
|
},
|