isobit-ui 0.0.322 → 0.0.323
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 +5 -16
- 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.323
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5657,27 +5657,16 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
5657
5657
|
methods: {
|
|
5658
5658
|
bindLinks: function bindLinks(el, callback) {
|
|
5659
5659
|
var me = this;
|
|
5660
|
-
el = el ? el : me.$el;
|
|
5660
|
+
el = el ? el : me.$el; //console.log(el);
|
|
5661
|
+
//console.log("ENTLO")
|
|
5661
5662
|
|
|
5662
5663
|
if (el.querySelectorAll) {
|
|
5663
|
-
var a
|
|
5664
|
+
//var a=el.querySelectorAll('a:not(._),ion-item:not(._)');
|
|
5665
|
+
var a = el.querySelectorAll('a:not(._),ion-item:not(._)'); //console.log(a)
|
|
5664
5666
|
|
|
5665
5667
|
var f = function f(e) {
|
|
5666
|
-
if (me.cccc) {
|
|
5667
|
-
me.cccc();
|
|
5668
|
-
}
|
|
5669
|
-
|
|
5670
5668
|
if (callback) callback();
|
|
5671
5669
|
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
5670
|
};
|
|
5682
5671
|
|
|
5683
5672
|
for (var i = 0; i < a.length; i++) {
|