Skip to content

Commit ac324fb

Browse files
authored
build: remove goo.gl links (angular#29640)
Since goo.gl is being turned down, these links will start 404ing soon.
1 parent b1731b3 commit ac324fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/material/core/style/_elevation.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ $_ambient-map: (
110110
// <div id="external-card" class="mat-elevation-z2"><p>Some content</p></div>
111111
//
112112
// For an explanation of the design behind how elevation is implemented, see the design doc at
113-
// https://goo.gl/Kq0k9Z.
113+
// https://docs.google.com/document/d/1W3NGSLqDZzjbBBLW2C6y_6NUxtvdZAVaJvg58LY3Q0E/edit
114114

115115
// The default duration value for elevation transitions.
116116
$transition-duration: 280ms !default;

src/material/table/table-data-source.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ export class MatTableDataSource<T, P extends MatPaginator = MatPaginator> extend
153153
if (_isNumberValue(value)) {
154154
const numberValue = Number(value);
155155

156-
// Numbers beyond `MAX_SAFE_INTEGER` can't be compared reliably so we
157-
// leave them as strings. For more info: https://goo.gl/y5vbSg
156+
// Numbers beyond `MAX_SAFE_INTEGER` can't be compared reliably so we leave them as strings.
157+
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER
158158
return numberValue < MAX_SAFE_INTEGER ? numberValue : value;
159159
}
160160

0 commit comments

Comments
 (0)