Skip to content

Commit

Permalink
build: remove goo.gl links (#29640)
Browse files Browse the repository at this point in the history
Since goo.gl is being turned down, these links will start 404ing soon.
  • Loading branch information
crisbeto authored Aug 25, 2024
1 parent b1731b3 commit ac324fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/material/core/style/_elevation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ $_ambient-map: (
// <div id="external-card" class="mat-elevation-z2"><p>Some content</p></div>
//
// For an explanation of the design behind how elevation is implemented, see the design doc at
// https://goo.gl/Kq0k9Z.
// https://docs.google.com/document/d/1W3NGSLqDZzjbBBLW2C6y_6NUxtvdZAVaJvg58LY3Q0E/edit

// The default duration value for elevation transitions.
$transition-duration: 280ms !default;
Expand Down
4 changes: 2 additions & 2 deletions src/material/table/table-data-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ export class MatTableDataSource<T, P extends MatPaginator = MatPaginator> extend
if (_isNumberValue(value)) {
const numberValue = Number(value);

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

Expand Down

0 comments on commit ac324fb

Please sign in to comment.