mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 15:07:13 +08:00
Cleanup some stuff
This commit is contained in:
13
dist/ionic.js
vendored
13
dist/ionic.js
vendored
@ -1796,13 +1796,12 @@ window.ionic = {
|
|||||||
|
|
||||||
ionic.views.List.prototype = {
|
ionic.views.List.prototype = {
|
||||||
_handleSwipeLeft: function(e) {
|
_handleSwipeLeft: function(e) {
|
||||||
var item = e.target;
|
|
||||||
var cl = item.classList;
|
|
||||||
var content;
|
|
||||||
var buttons;
|
|
||||||
var buttonsWidth;
|
|
||||||
|
|
||||||
window.requestAnimationFrame(function() {
|
window.requestAnimationFrame(function() {
|
||||||
|
var item = e.target,
|
||||||
|
cl = item.classList,
|
||||||
|
content, buttons, buttonsWidth;
|
||||||
|
|
||||||
// Grab the content item
|
// Grab the content item
|
||||||
if(cl.contains('list-item')) {
|
if(cl.contains('list-item')) {
|
||||||
content = item.querySelector('.list-item-content');
|
content = item.querySelector('.list-item-content');
|
||||||
@ -1823,10 +1822,10 @@ window.ionic = {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
_handleSwipeRight: function(e) {
|
_handleSwipeRight: function(e) {
|
||||||
var item = e.target;
|
|
||||||
|
|
||||||
window.requestAnimationFrame(function() {
|
window.requestAnimationFrame(function() {
|
||||||
var cl = item.classList;
|
var item = e.target,
|
||||||
|
cl = item.classList;
|
||||||
|
|
||||||
if(cl.contains('list-item')) {
|
if(cl.contains('list-item')) {
|
||||||
content = item.querySelector('.list-item-content');
|
content = item.querySelector('.list-item-content');
|
||||||
|
|||||||
@ -16,13 +16,12 @@
|
|||||||
|
|
||||||
ionic.views.List.prototype = {
|
ionic.views.List.prototype = {
|
||||||
_handleSwipeLeft: function(e) {
|
_handleSwipeLeft: function(e) {
|
||||||
var item = e.target;
|
|
||||||
var cl = item.classList;
|
|
||||||
var content;
|
|
||||||
var buttons;
|
|
||||||
var buttonsWidth;
|
|
||||||
|
|
||||||
window.requestAnimationFrame(function() {
|
window.requestAnimationFrame(function() {
|
||||||
|
var item = e.target,
|
||||||
|
cl = item.classList,
|
||||||
|
content, buttons, buttonsWidth;
|
||||||
|
|
||||||
// Grab the content item
|
// Grab the content item
|
||||||
if(cl.contains('list-item')) {
|
if(cl.contains('list-item')) {
|
||||||
content = item.querySelector('.list-item-content');
|
content = item.querySelector('.list-item-content');
|
||||||
@ -43,10 +42,10 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
_handleSwipeRight: function(e) {
|
_handleSwipeRight: function(e) {
|
||||||
var item = e.target;
|
|
||||||
|
|
||||||
window.requestAnimationFrame(function() {
|
window.requestAnimationFrame(function() {
|
||||||
var cl = item.classList;
|
var item = e.target,
|
||||||
|
cl = item.classList;
|
||||||
|
|
||||||
if(cl.contains('list-item')) {
|
if(cl.contains('list-item')) {
|
||||||
content = item.querySelector('.list-item-content');
|
content = item.querySelector('.list-item-content');
|
||||||
|
|||||||
Reference in New Issue
Block a user