Created
September 21, 2015 00:50
-
-
Save djfrsn/a945963b01e1483580f3 to your computer and use it in GitHub Desktop.
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
| var inViewTool = function () { | |
| var inViewToolName, names; | |
| return { | |
| setName: function ( s ) { return inViewToolName = s; }, | |
| name: function ( ) { return inViewToolName; }, | |
| setNames: function ( a ) { return names = a; }, | |
| names: function ( ) { return names; }, | |
| concatName: function ( n, m ) { return names[n] + ' ' + names[m]; } | |
| }; | |
| }(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment