Skip to content

Commit 26c2a82

Browse files
Create ExtendMultipleScriptIncludes.js
1 parent ae4d7d9 commit 26c2a82

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var ExtendMultipleScriptIncludes = Class.create();
2+
ExtendMultipleScriptIncludes.prototype = Object.assign({}, global.ArrayUtil.prototype, global.GlideRecordUtil.prototype, { //extend with as many script includes as one wants
3+
initialize: function() {},
4+
5+
sayHello: function() {
6+
return 'Hello ' + gs.getUserDisplayName();
7+
},
8+
9+
type: 'ExtendMultipleScriptIncludes'
10+
});

0 commit comments

Comments
 (0)