diff options
Diffstat (limited to 'data/js/application.js')
-rw-r--r-- | data/js/application.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/data/js/application.js b/data/js/application.js index 9db8d8398..dedefbc3b 100644 --- a/data/js/application.js +++ b/data/js/application.js @@ -8,9 +8,18 @@ define( 'tabwidth-input', 'thumbnail-view', 'uploader', + 'tablesorter', 'vendor' ], - function (require, Util, LexerInput, TabwidthInput, ThumbnailView, Uploader) { + function ( + require, + Util, + LexerInput, + TabwidthInput, + ThumbnailView, + Uploader, + TableSorter + ) { require(['script']); var App = { // Gets called for every request (before page load) @@ -29,6 +38,7 @@ define( LexerInput.initialize(); ThumbnailView.initialize(); Uploader.initialize(); + TableSorter.initialize(); this.configureTooltips(); this.setupToggleSelectAllEvent(); this.setupLineWrapToggle(); |