modifies angular-mobile to fix firefox glitch

This commit is contained in:
perploug
2013-11-14 22:05:51 +01:00
parent cadf1fe9bb
commit 28ec40e1ae
6 changed files with 2297 additions and 17 deletions

View File

@@ -271,6 +271,7 @@ ngMobile.directive('ngClick', ['$parse', '$timeout', '$rootElement',
});
});
/*
element.bind('mousedown', function(event) {
element.addClass(ACTIVE_CLASS_NAME);
});
@@ -278,6 +279,7 @@ ngMobile.directive('ngClick', ['$parse', '$timeout', '$rootElement',
element.bind('mousemove mouseup', function(event) {
element.removeClass(ACTIVE_CLASS_NAME);
});
*/
};
}]);

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -5,18 +5,8 @@ var app = angular.module('umbraco', [
'umbraco.services',
'umbraco.packages',
'ngCookies',
'ngMobile',
'ngSanitize',
'ngMobile',
'blueimp.fileupload'
]);
//seperate core and packages?
var packages = angular.module("umbraco.packages", []);
/* For Angular 1.2: we need to load in Route, animate and touch seperately
'ngRoute',
'ngAnimate',
'ngTouch'
*/
var packages = angular.module("umbraco.packages", []);

View File

@@ -27,14 +27,12 @@
// Components: common
//@import "../../lib/bootstrap/less/sprites.less";
@import "../../lib/bootstrap/less/dropdowns.less";
@import "../../lib/bootstrap/less/wells.less";
@import "../../lib/bootstrap/less/component-animations.less";
@import "../../lib/bootstrap/less/close.less";
// Components: Buttons & Alerts
// @import "../../lib/bootstrap/less/buttons.less";
@import "../../lib/bootstrap/less/button-groups.less";
@import "alerts.less"; // Note: alerts share common CSS with buttons and thus have styles in buttons.less
@@ -83,4 +81,4 @@
//used for property editors
@import "property-editors.less";
@import "hacks.less";
@import "hacks.less";

View File

@@ -7,7 +7,7 @@
'lib/moment.min.js',
'lib/angular/1.1.5/angular-cookies.min.js',
'lib/angular/1.1.5/angular-mobile.min.js',
'lib/angular/1.1.5/angular-mobile.js',
'lib/angular/1.1.5/angular-sanitize.min.js',
'lib/angular/angular-ui-sortable.js',
@@ -18,7 +18,7 @@
'lib/jquery/jquery.upload/js/jquery.fileupload-image.js',
'lib/jquery/jquery.upload/js/jquery.fileupload-angular.js',
'lib/bootstrap/js/bootstrap.2.2.3.min.js',
'lib/bootstrap/js/bootstrap.2.3.2.min.js',
'lib/umbraco/Extensions.js',
'lib/umbraco/NamespaceManager.js',