mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
describe('Ionic Events', function() {
|
|
it('Should block all click events', function() {
|
|
var a = document.createElement('a');
|
|
|
|
ionic.trigger('click', {
|
|
target: a
|
|
});
|
|
});
|
|
});
|