mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(jshint): clearing semicolon warnings
This commit is contained in:
4
js/angular/service/platform.js
vendored
4
js/angular/service/platform.js
vendored
@@ -6,7 +6,7 @@ var PLATFORM_BACK_BUTTON_PRIORITY_POPUP = 400;
|
||||
var PLATFORM_BACK_BUTTON_PRIORITY_LOADING = 500;
|
||||
|
||||
function componentConfig(defaults) {
|
||||
defaults.$get = function() { return defaults; }
|
||||
defaults.$get = function() { return defaults; };
|
||||
return defaults;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ IonicModule
|
||||
position: ''
|
||||
}
|
||||
}
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
IonicModule.config([
|
||||
|
||||
2
js/angular/service/popup.js
vendored
2
js/angular/service/popup.js
vendored
@@ -326,7 +326,7 @@ function($ionicTemplateLoader, $ionicBackdrop, $q, $timeout, $rootScope, $docume
|
||||
self.element.addClass('popup-tall');
|
||||
newHeight = window.innerHeight - popupHead[0].offsetHeight - popupButtons[0].offsetHeight -20;
|
||||
popupBody[0].style.height = newHeight + 'px';
|
||||
};
|
||||
}
|
||||
|
||||
self.element.removeClass('popup-hidden');
|
||||
self.element.addClass('popup-showing active');
|
||||
|
||||
Reference in New Issue
Block a user