Skip to content

Commit

Permalink
Merge pull request #899 from trimble-oss/dev/coliff/dev-dep-update
Browse files Browse the repository at this point in the history
Dev Deps Updates
  • Loading branch information
coliff authored Sep 2, 2024
2 parents 717d9e0 + 8bf5d42 commit 4e65ebf
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Folders

/assets/ @coliff
/content/ @coliff @egunther39 @enowak1031
/content/ @coliff @egunther39 @enowak1031 @mitch-trimble
/content/components/in-field/ @mjohnsnz
/layouts/ @coliff
/static/ @coliff
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
push:
branches: [main]
pull_request:
branches: [main]
branches-ignore:
- "dependabot/**"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion layouts/_default/_markup/render-link.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
<a href="{{- .Destination | safeURL -}}" {{ with .Title}} title="{{- . -}}"
{{- end -}}{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noopener" {{- end -}}>
{{- .Text | safeHTML -}}
</a>
</a>
7 changes: 5 additions & 2 deletions layouts/shortcodes/iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
{{ $name := .Get "name" | default "iframe-name" }}
{{ $id := .Get "id" | default "iframe-id" }}
{{ $class := .Get "class" }}
{{ $title := .Get "title" }}
{{ $sub := .Get "sub" | default "Your browser can not display embedded frames. You can access the embedded page via the following link:" }}
{{ with $src }}
{{ if $tryautoheight }}
Expand All @@ -15,10 +16,12 @@
}
</script>
{{ end }}
<iframe id="{{ $id }}" {{ with $class }} class="{{ $class }}" {{ end }} src="{{ $src }}" width="{{ $width }}"
<iframe id="{{ $id }}" {{ with $class }} class="{{- $class }}" {{ end }}
{{ with $title }} class="{{- $title }}" {{ end }}
src="{{ $src }}" width="{{- $width -}}"
name="{{ $name }}" {{ with $style }} style="{{ $style | safeCSS }}" {{ end }}{{ if $tryautoheight }}
onload="resizeIframe(this)" {{ end }} referrerpolicy="no-referrer"
{{ if (eq $sandbox false)}}{{ else if (eq $sandbox true) }} sandbox{{ else }} sandbox="{{ $sandbox }}" {{ end }}>
<p>{{ $sub }} <a href="{{ $src }}">{{ $src }}</a></p>
</iframe>
{{ end }}
{{ end }}
112 changes: 61 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@
"bootstrap-print-css": "1.0.1",
"cross-env": "7.0.3",
"htmlhint": "1.1.4",
"hugo-bin": "0.129.1",
"hugo-bin": "0.130.1",
"list.js": "2.3.1",
"npm-run-all": "4.1.5",
"popover-css-inspector": "1.0.0-beta15",
"postcss": "8.4.41",
"postcss": "8.4.43",
"postcss-cli": "11.0.0",
"prettier": "3.3.3",
"s3-deploy": "1.4.0",
"stylelint": "16.8.1",
"stylelint": "16.9.0",
"stylelint-config-standard-scss": "13.1.0",
"textlint": "14.2.0",
"textlint-rule-common-misspellings": "1.0.1",
Expand Down

0 comments on commit 4e65ebf

Please sign in to comment.