Move phab docs to /documentation (#882)

This commit is contained in:
George Gevoian
2024-03-05 08:35:48 -05:00
committed by GitHub
parent 1e169599d1
commit 0c60446f9c
9 changed files with 467 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
* dispose.js provides tools to components that needs to dispose of resources, such as
* destroy DOM, and unsubscribe from events. The motivation with examples is presented here:
*
* https://phab.getgrist.com/w/disposal/
* /documentation/disposal/disposal.md
*/
@@ -191,7 +191,7 @@ Object.assign(Disposable.prototype, {
}
// Finish by wiping out the object, since nothing should use it after dispose().
// See https://phab.getgrist.com/w/disposal/ for more motivation.
// See /documentation/disposal.md for more motivation.
wipeOutObject(this);
}
});