Skip to content

Commit 8b974e0

Browse files
committed
Remove inline copy
1 parent 3281191 commit 8b974e0

File tree

6 files changed

+14
-24
lines changed

6 files changed

+14
-24
lines changed

documentation/3.2/config.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ title = "WebLogic Kubernetes Operator"
88
# Change the default theme to be use when building the site with Hugo
99
theme = "hugo-theme-learn"
1010

11-
# disable the copy to clipboard links
12-
disableInlineCopyToClipBoard = true
13-
1411
publishDir = "docs"
1512

1613
# For search functionality
1714
[outputs]
18-
home = [ "HTML", "RSS", "JSON"]
15+
home = [ "HTML", "RSS", "JSON"]
16+
17+
[params]
18+
# disable the copy to clipboard links
19+
disableInlineCopyToClipBoard = true

documentation/3.2/content/userguide/managing-operators/installation/_index.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ For more information on specifying the registry credentials when the operator im
6161
Add this repository to the Helm installation:
6262

6363
```shell
64-
$ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
64+
$ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts --force-update
6565
```
6666

6767
Verify that the repository was added correctly:
@@ -74,12 +74,6 @@ NAME URL
7474
weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
7575
```
7676

77-
Update with the latest information about charts from the chart repositories:
78-
79-
```shell
80-
$ helm repo update
81-
```
82-
8377
Install the operator from the repository:
8478

8579
```shell

documentation/3.2/themes/hugo-theme-learn/static/js/learn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jQuery(document).ready(function() {
232232
var code = $(this),
233233
text = code.text();
234234

235-
if (text.length > 25) {
235+
if (text.length > 5) {
236236
if (!clipInit) {
237237
var text, clip = new ClipboardJS('.copy-to-clipboard', {
238238
text: function(trigger) {

documentation/staging/config.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ title = "WebLogic Kubernetes Operator"
88
# Change the default theme to be use when building the site with Hugo
99
theme = "hugo-theme-learn"
1010

11-
# disable the copy to clipboard links
12-
disableInlineCopyToClipBoard = true
13-
1411
publishDir = "docs"
1512

1613
# For search functionality
1714
[outputs]
18-
home = [ "HTML", "RSS", "JSON"]
15+
home = [ "HTML", "RSS", "JSON"]
16+
17+
[params]
18+
# disable the copy to clipboard links
19+
disableInlineCopyToClipBoard = true

documentation/staging/content/userguide/managing-operators/installation/_index.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ For more information on specifying the registry credentials when the operator im
6161
Add this repository to the Helm installation:
6262

6363
```shell
64-
$ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
64+
$ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts --force-update
6565
```
6666

6767
Verify that the repository was added correctly:
@@ -74,12 +74,6 @@ NAME URL
7474
weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
7575
```
7676

77-
Update with the latest information about charts from the chart repositories:
78-
79-
```shell
80-
$ helm repo update
81-
```
82-
8377
Install the operator from the repository:
8478

8579
```shell

documentation/staging/themes/hugo-theme-learn/static/js/learn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jQuery(document).ready(function() {
232232
var code = $(this),
233233
text = code.text();
234234

235-
if (text.length > 25) {
235+
if (text.length > 5) {
236236
if (!clipInit) {
237237
var text, clip = new ClipboardJS('.copy-to-clipboard', {
238238
text: function(trigger) {

0 commit comments

Comments
 (0)