-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2d848a
commit ff8b841
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
/** | ||
* This method will be called at the start of exports.transform in ManagedReference.html.primary.js | ||
*/ | ||
exports.preTransform = function (model) { | ||
return model; | ||
} | ||
|
||
/** | ||
* This method will be called at the end of exports.transform in ManagedReference.html.primary.js | ||
*/ | ||
exports.postTransform = function (model) { | ||
|
||
model.sourceurl += 'xxx'; | ||
|
||
return model; | ||
} |