This file contains hidden or 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
| { | |
| #region Adornment Factory | |
| /// <summary> | |
| /// Establishes an <see cref="IAdornmentLayer"/> to place the adornment on and exports the <see cref="IWpfTextViewCreationListener"/> | |
| /// that instantiates the adornment on the event of a <see cref="IWpfTextView"/>'s creation | |
| /// </summary> |
This file contains hidden or 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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
This file contains hidden or 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
| <button type="button", id="click">Click for a Name</button> | |
| <div id="response"></div> | |
| <script src="nameme.js"></script> | |
| <script> | |
| var button = document.getElementById('click'); | |
| var div = document.getElementById('response'); | |
| button.addEventListener('click', function () { | |
| nameMe().then(function (r) { | |
| div.innerText = r; | |
| }); |