From 650b90bef2ce1628a3f1c79c2c2bbb8a3f2727e5 Mon Sep 17 00:00:00 2001 From: Brian Ingenito Date: Thu, 10 Apr 2025 08:47:03 -0400 Subject: [PATCH 1/2] Update organization GitHub pages URL --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cd9aa138..3813b1e2 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ container agnostic and provide portability when multiple container deployments a Usage --------------- -The first step is to simply [resolve](http://opensource.morganstanley.com/desktopJS/modules/_desktopjs_src_registry_.html#resolvecontainer) the current [container](http://opensource.morganstanley.com/desktopJS/classes/_desktopjs_src_container_.container.html). This enumerates +The first step is to simply [resolve](http://morganstanley.github.io/desktopJS/modules/_desktopjs_src_registry_.html#resolvecontainer) the current [container](http://morganstanley.github.io/desktopJS/classes/_desktopjs_src_container_.container.html). This enumerates all registered containers (including your own custom container or derived custom implementations) and returns the container implementation that matches. @@ -24,7 +24,7 @@ var container = desktopJS.resolveContainer(); console.log("Container: " + container.hostType); ``` -Interact with the [container](http://opensource.morganstanley.com/desktopJS/classes/_desktopjs_src_container_.container.html) via a single api instead of having conditional code or applications +Interact with the [container](http://morganstanley.github.io/desktopJS/classes/_desktopjs_src_container_.container.html) via a single api instead of having conditional code or applications based on deployment. ``` @@ -219,7 +219,7 @@ Feature Matrix Persistence - desktopJS + desktopJS :x: From bd77e075b80325ecea7cfe7d189c22e8c0f5e3f3 Mon Sep 17 00:00:00 2001 From: bingenito Date: Thu, 10 Apr 2025 10:15:46 -0400 Subject: [PATCH 2/2] Fix broken documentation links in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3813b1e2..9234c6e9 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ container agnostic and provide portability when multiple container deployments a Usage --------------- -The first step is to simply [resolve](http://morganstanley.github.io/desktopJS/modules/_desktopjs_src_registry_.html#resolvecontainer) the current [container](http://morganstanley.github.io/desktopJS/classes/_desktopjs_src_container_.container.html). This enumerates +The first step is to simply [resolve](http://morganstanley.github.io/desktopJS/functions/_morgan_stanley_desktopjs.resolveContainer.html) the current [container](http://morganstanley.github.io/desktopJS/classes/_morgan_stanley_desktopjs.Container.html). This enumerates all registered containers (including your own custom container or derived custom implementations) and returns the container implementation that matches. @@ -24,7 +24,7 @@ var container = desktopJS.resolveContainer(); console.log("Container: " + container.hostType); ``` -Interact with the [container](http://morganstanley.github.io/desktopJS/classes/_desktopjs_src_container_.container.html) via a single api instead of having conditional code or applications +Interact with the [container](http://morganstanley.github.io/desktopJS/classes/_morgan_stanley_desktopjs.Container.html) via a single api instead of having conditional code or applications based on deployment. ```