Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 0 additions & 44 deletions dist/js/mobile-angular-ui.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,49 +1173,6 @@

})();

(function() {
'use strict';
var module = angular.module('mobile-angular-ui.core.fastclick', []);

module.run(['$window', function($window) {

// Temporarly bugfix in overthrow/fastclick:
var orgHandler = FastClick.prototype.onTouchEnd;

// Some old versions of Android don't have Function.prototype.bind
function bind(method, context) {
return function() {
return method.apply(context, arguments);
};
}

FastClick.prototype.onTouchEnd = function(event) {

if (!event.changedTouches) {
event.changedTouches = [{}];
}

orgHandler = bind(orgHandler, this);
orgHandler(event);
};

FastClick.attach($window.document.body);

}]);

angular.forEach(['select', 'input', 'textarea'], function(directiveName) {

module.directive(directiveName, function() {
return {
restrict: 'E',
compile: function(elem) {
elem.addClass('needsclick');
}
};
});
});
})();

/**
*
* @module mobile-angular-ui.core.outerClick
Expand Down Expand Up @@ -2568,7 +2525,6 @@
(function() {
'use strict';
angular.module('mobile-angular-ui.core', [
'mobile-angular-ui.core.fastclick',
'mobile-angular-ui.core.activeLinks',
'mobile-angular-ui.core.capture',
'mobile-angular-ui.core.outerClick',
Expand Down
2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.core.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.gestures.min.js.map

Large diffs are not rendered by default.

44 changes: 0 additions & 44 deletions dist/js/mobile-angular-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,49 +1173,6 @@

})();

(function() {
'use strict';
var module = angular.module('mobile-angular-ui.core.fastclick', []);

module.run(['$window', function($window) {

// Temporarly bugfix in overthrow/fastclick:
var orgHandler = FastClick.prototype.onTouchEnd;

// Some old versions of Android don't have Function.prototype.bind
function bind(method, context) {
return function() {
return method.apply(context, arguments);
};
}

FastClick.prototype.onTouchEnd = function(event) {

if (!event.changedTouches) {
event.changedTouches = [{}];
}

orgHandler = bind(orgHandler, this);
orgHandler(event);
};

FastClick.attach($window.document.body);

}]);

angular.forEach(['select', 'input', 'textarea'], function(directiveName) {

module.directive(directiveName, function() {
return {
restrict: 'E',
compile: function(elem) {
elem.addClass('needsclick');
}
};
});
});
})();

/**
*
* @module mobile-angular-ui.core.outerClick
Expand Down Expand Up @@ -2568,7 +2525,6 @@
(function() {
'use strict';
angular.module('mobile-angular-ui.core', [
'mobile-angular-ui.core.fastclick',
'mobile-angular-ui.core.activeLinks',
'mobile-angular-ui.core.capture',
'mobile-angular-ui.core.outerClick',
Expand Down
2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/mobile-angular-ui.min.js.map

Large diffs are not rendered by default.

Loading