@@ -236,7 +236,7 @@ angular
236
236
* - `locals` - `{Object=}`: An object containing key/value pairs. The keys
237
237
* will be used as names of values to inject into the controller. For
238
238
* example, `locals: {three: 3}` would inject `three` into the controller,
239
- * with the value 3. 'mdPanelRef' is a reserved key, and will always
239
+ * with the value 3. 'mdPanelRef' is a reserved key, and will always
240
240
* be set to the created MdPanelRef instance.
241
241
* - `resolve` - `{Object=}`: Similar to locals, except it takes promises as
242
242
* values. The panel will not open until all of the promises resolve.
@@ -1296,10 +1296,10 @@ MdPanelService.prototype._closeFirstOpenedPanel = function(groupName) {
1296
1296
1297
1297
1298
1298
/**
1299
- * Wraps the users template in two elements, md-panel-outer-wrapper, which
1300
- * covers the entire attachTo element, and md-panel, which contains only the
1301
- * template. This allows the panel control over positioning, animations,
1302
- * and similar properties .
1299
+ * Wraps the user's template in three elements:
1300
+ * - md-panel-outer-wrapper - covers the entire ` attachTo` element.
1301
+ * - md- panel-inner-wrapper - handles the positioning.
1302
+ * - md-panel - contains the user's content and deals with the animations .
1303
1303
* @param {string } origTemplate The original template.
1304
1304
* @returns {string } The wrapped template.
1305
1305
* @private
@@ -1311,26 +1311,32 @@ MdPanelService.prototype._wrapTemplate = function(origTemplate) {
1311
1311
// height and width for positioning.
1312
1312
return '' +
1313
1313
'<div class="md-panel-outer-wrapper">' +
1314
- ' <div class="md-panel _md-panel-offscreen">' + template + '</div>' +
1314
+ '<div class="md-panel-inner-wrapper" style="left: -9999px;">' +
1315
+ '<div class="md-panel _md-panel-offscreen">' + template + '</div>' +
1316
+ '</div>' +
1315
1317
'</div>' ;
1316
1318
} ;
1317
1319
1318
1320
1319
1321
/**
1320
- * Wraps a content element in a md-panel-outer wrapper and
1321
- * positions it off-screen. Allows for proper control over positoning
1322
- * and animations.
1322
+ * Wraps a content element in a ` md-panel-outer- wrapper`, as well as
1323
+ * a `md-panel-inner-wrapper`, and positions it off-screen. Allows for
1324
+ * proper control over positoning and animations.
1323
1325
* @param {!angular.JQLite } contentElement Element to be wrapped.
1324
1326
* @return {!angular.JQLite } Wrapper element.
1325
1327
* @private
1326
1328
*/
1327
1329
MdPanelService . prototype . _wrapContentElement = function ( contentElement ) {
1328
- var wrapper = angular . element ( '<div class="md-panel-outer-wrapper">' ) ;
1330
+ var outerWrapper = angular . element (
1331
+ '<div class="md-panel-outer-wrapper">' +
1332
+ '<div class="md-panel-inner-wrapper" style="left: -9999px;"></div>' +
1333
+ '</div>'
1334
+ ) ;
1329
1335
1330
1336
contentElement . addClass ( 'md-panel _md-panel-offscreen' ) ;
1331
- wrapper . append ( contentElement ) ;
1337
+ outerWrapper . children ( ) . eq ( 0 ) . append ( contentElement ) ;
1332
1338
1333
- return wrapper ;
1339
+ return outerWrapper ;
1334
1340
} ;
1335
1341
1336
1342
@@ -1397,6 +1403,9 @@ function MdPanelRef(config, $injector) {
1397
1403
/** @type {!angular.JQLite|undefined } */
1398
1404
this . panelEl ;
1399
1405
1406
+ /** @type {!angular.JQLite|undefined } */
1407
+ this . innerWrapper ;
1408
+
1400
1409
/**
1401
1410
* Whether the panel is attached. This is synchronous. When attach is called,
1402
1411
* isAttached is set to true. When detach is called, isAttached is set to
@@ -1839,6 +1848,11 @@ MdPanelRef.prototype._compile = function() {
1839
1848
) ;
1840
1849
}
1841
1850
1851
+ // Save a reference to the inner wrapper.
1852
+ self . innerWrapper = angular . element (
1853
+ self . panelContainer [ 0 ] . querySelector ( '.md-panel-inner-wrapper' )
1854
+ ) ;
1855
+
1842
1856
// Save a reference to the cleanup function from the compiler.
1843
1857
self . _compilerCleanup = compileData . cleanup ;
1844
1858
@@ -1915,14 +1929,17 @@ MdPanelRef.prototype._addStyles = function() {
1915
1929
var self = this ;
1916
1930
return this . _$q ( function ( resolve ) {
1917
1931
self . panelContainer . css ( 'z-index' , self . config [ 'zIndex' ] ) ;
1918
- self . panelEl . css ( 'z-index' , self . config [ 'zIndex' ] + 1 ) ;
1932
+ self . innerWrapper . css ( 'z-index' , self . config [ 'zIndex' ] + 1 ) ;
1919
1933
1920
1934
var hideAndResolve = function ( ) {
1921
1935
// Theme the element and container.
1922
1936
self . _setTheming ( ) ;
1923
1937
1924
1938
// Remove offscreen class and add hidden class.
1925
1939
self . panelEl . removeClass ( '_md-panel-offscreen' ) ;
1940
+
1941
+ // Remove left: -9999px and add hidden class.
1942
+ self . innerWrapper . css ( 'left' , '' ) ;
1926
1943
self . panelContainer . addClass ( MD_PANEL_HIDDEN ) ;
1927
1944
1928
1945
resolve ( self ) ;
@@ -1989,27 +2006,27 @@ MdPanelRef.prototype._updatePosition = function(init) {
1989
2006
var positionConfig = this . config [ 'position' ] ;
1990
2007
1991
2008
if ( positionConfig ) {
1992
- positionConfig . _setPanelPosition ( this . panelEl ) ;
2009
+ positionConfig . _setPanelPosition ( this . innerWrapper ) ;
1993
2010
1994
2011
// Hide the panel now that position is known.
1995
2012
if ( init ) {
1996
2013
this . panelEl . removeClass ( '_md-panel-offscreen' ) ;
1997
2014
this . panelContainer . addClass ( MD_PANEL_HIDDEN ) ;
1998
2015
}
1999
2016
2000
- this . panelEl . css (
2017
+ this . innerWrapper . css (
2001
2018
MdPanelPosition . absPosition . TOP ,
2002
2019
positionConfig . getTop ( )
2003
2020
) ;
2004
- this . panelEl . css (
2021
+ this . innerWrapper . css (
2005
2022
MdPanelPosition . absPosition . BOTTOM ,
2006
2023
positionConfig . getBottom ( )
2007
2024
) ;
2008
- this . panelEl . css (
2025
+ this . innerWrapper . css (
2009
2026
MdPanelPosition . absPosition . LEFT ,
2010
2027
positionConfig . getLeft ( )
2011
2028
) ;
2012
- this . panelEl . css (
2029
+ this . innerWrapper . css (
2013
2030
MdPanelPosition . absPosition . RIGHT ,
2014
2031
positionConfig . getRight ( )
2015
2032
) ;
@@ -2916,38 +2933,38 @@ MdPanelPosition.prototype.getTransform = function() {
2916
2933
2917
2934
2918
2935
/**
2919
- * Sets the `transform` value for a panel element.
2920
- * @param {!angular.JQLite } panelEl
2936
+ * Sets the `transform` value for an element.
2937
+ * @param {!angular.JQLite } el
2921
2938
* @returns {!angular.JQLite }
2922
2939
* @private
2923
2940
*/
2924
- MdPanelPosition . prototype . _setTransform = function ( panelEl ) {
2925
- return panelEl . css ( this . _$mdConstant . CSS . TRANSFORM , this . getTransform ( ) ) ;
2941
+ MdPanelPosition . prototype . _setTransform = function ( el ) {
2942
+ return el . css ( this . _$mdConstant . CSS . TRANSFORM , this . getTransform ( ) ) ;
2926
2943
} ;
2927
2944
2928
2945
2929
2946
/**
2930
2947
* True if the panel is completely on-screen with this positioning; false
2931
2948
* otherwise.
2932
- * @param {!angular.JQLite } panelEl
2949
+ * @param {!angular.JQLite } el
2933
2950
* @return {boolean }
2934
2951
* @private
2935
2952
*/
2936
- MdPanelPosition . prototype . _isOnscreen = function ( panelEl ) {
2953
+ MdPanelPosition . prototype . _isOnscreen = function ( el ) {
2937
2954
// this works because we always use fixed positioning for the panel,
2938
2955
// which is relative to the viewport.
2939
2956
var left = parseInt ( this . getLeft ( ) ) ;
2940
2957
var top = parseInt ( this . getTop ( ) ) ;
2941
2958
2942
2959
if ( this . _translateX . length || this . _translateY . length ) {
2943
2960
var prefixedTransform = this . _$mdConstant . CSS . TRANSFORM ;
2944
- var offsets = getComputedTranslations ( panelEl , prefixedTransform ) ;
2961
+ var offsets = getComputedTranslations ( el , prefixedTransform ) ;
2945
2962
left += offsets . x ;
2946
2963
top += offsets . y ;
2947
2964
}
2948
2965
2949
- var right = left + panelEl [ 0 ] . offsetWidth ;
2950
- var bottom = top + panelEl [ 0 ] . offsetHeight ;
2966
+ var right = left + el [ 0 ] . offsetWidth ;
2967
+ var bottom = top + el [ 0 ] . offsetHeight ;
2951
2968
2952
2969
return ( left >= 0 ) &&
2953
2970
( top >= 0 ) &&
@@ -2987,53 +3004,53 @@ MdPanelPosition.prototype._reduceTranslateValues =
2987
3004
/**
2988
3005
* Sets the panel position based on the created panel element and best x/y
2989
3006
* positioning.
2990
- * @param {!angular.JQLite } panelEl
3007
+ * @param {!angular.JQLite } el
2991
3008
* @private
2992
3009
*/
2993
- MdPanelPosition . prototype . _setPanelPosition = function ( panelEl ) {
2994
- // Remove the "position adjusted" class in case it has been added before.
2995
- panelEl . removeClass ( '_md-panel-position-adjusted' ) ;
3010
+ MdPanelPosition . prototype . _setPanelPosition = function ( el ) {
3011
+ // Remove the class in case it has been added before.
3012
+ el . removeClass ( '_md-panel-position-adjusted' ) ;
2996
3013
2997
3014
// Only calculate the position if necessary.
2998
3015
if ( this . _absolute ) {
2999
- this . _setTransform ( panelEl ) ;
3016
+ this . _setTransform ( el ) ;
3000
3017
return ;
3001
3018
}
3002
3019
3003
3020
if ( this . _actualPosition ) {
3004
- this . _calculatePanelPosition ( panelEl , this . _actualPosition ) ;
3005
- this . _setTransform ( panelEl ) ;
3006
- this . _constrainToViewport ( panelEl ) ;
3021
+ this . _calculatePanelPosition ( el , this . _actualPosition ) ;
3022
+ this . _setTransform ( el ) ;
3023
+ this . _constrainToViewport ( el ) ;
3007
3024
return ;
3008
3025
}
3009
3026
3010
3027
for ( var i = 0 ; i < this . _positions . length ; i ++ ) {
3011
3028
this . _actualPosition = this . _positions [ i ] ;
3012
- this . _calculatePanelPosition ( panelEl , this . _actualPosition ) ;
3013
- this . _setTransform ( panelEl ) ;
3029
+ this . _calculatePanelPosition ( el , this . _actualPosition ) ;
3030
+ this . _setTransform ( el ) ;
3014
3031
3015
- if ( this . _isOnscreen ( panelEl ) ) {
3032
+ if ( this . _isOnscreen ( el ) ) {
3016
3033
return ;
3017
3034
}
3018
3035
}
3019
3036
3020
- this . _constrainToViewport ( panelEl ) ;
3037
+ this . _constrainToViewport ( el ) ;
3021
3038
} ;
3022
3039
3023
3040
3024
3041
/**
3025
3042
* Constrains a panel's position to the viewport.
3026
- * @param {!angular.JQLite } panelEl
3043
+ * @param {!angular.JQLite } el
3027
3044
* @private
3028
3045
*/
3029
- MdPanelPosition . prototype . _constrainToViewport = function ( panelEl ) {
3046
+ MdPanelPosition . prototype . _constrainToViewport = function ( el ) {
3030
3047
var margin = MdPanelPosition . viewportMargin ;
3031
3048
var initialTop = this . _top ;
3032
3049
var initialLeft = this . _left ;
3033
3050
3034
3051
if ( this . getTop ( ) ) {
3035
3052
var top = parseInt ( this . getTop ( ) ) ;
3036
- var bottom = panelEl [ 0 ] . offsetHeight + top ;
3053
+ var bottom = el [ 0 ] . offsetHeight + top ;
3037
3054
var viewportHeight = this . _$window . innerHeight ;
3038
3055
3039
3056
if ( top < margin ) {
@@ -3045,7 +3062,7 @@ MdPanelPosition.prototype._constrainToViewport = function(panelEl) {
3045
3062
3046
3063
if ( this . getLeft ( ) ) {
3047
3064
var left = parseInt ( this . getLeft ( ) ) ;
3048
- var right = panelEl [ 0 ] . offsetWidth + left ;
3065
+ var right = el [ 0 ] . offsetWidth + left ;
3049
3066
var viewportWidth = this . _$window . innerWidth ;
3050
3067
3051
3068
if ( left < margin ) {
@@ -3056,7 +3073,7 @@ MdPanelPosition.prototype._constrainToViewport = function(panelEl) {
3056
3073
}
3057
3074
3058
3075
// Class that can be used to re-style the panel if it was repositioned.
3059
- panelEl . toggleClass (
3076
+ el . toggleClass (
3060
3077
'_md-panel-position-adjusted' ,
3061
3078
this . _top !== initialTop || this . _left !== initialLeft
3062
3079
) ;
@@ -3095,13 +3112,13 @@ MdPanelPosition.prototype._bidi = function(position) {
3095
3112
/**
3096
3113
* Calculates the panel position based on the created panel element and the
3097
3114
* provided positioning.
3098
- * @param {!angular.JQLite } panelEl
3115
+ * @param {!angular.JQLite } el
3099
3116
* @param {!{x:string, y:string} } position
3100
3117
* @private
3101
3118
*/
3102
- MdPanelPosition . prototype . _calculatePanelPosition = function ( panelEl , position ) {
3119
+ MdPanelPosition . prototype . _calculatePanelPosition = function ( el , position ) {
3103
3120
3104
- var panelBounds = panelEl [ 0 ] . getBoundingClientRect ( ) ;
3121
+ var panelBounds = el [ 0 ] . getBoundingClientRect ( ) ;
3105
3122
var panelWidth = panelBounds . width ;
3106
3123
var panelHeight = panelBounds . height ;
3107
3124
0 commit comments