Skip to content

Commit

Permalink
easy to get LoadDetails working again; work on #317
Browse files Browse the repository at this point in the history
  • Loading branch information
kltm committed Mar 17, 2016
1 parent fb5d67b commit b14ab7d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ var web_compilables = [
'Grebe.js',
'LandingGraphs.js',
'LiveSearchGOlr.js',
'LoadDetails.js',
'Schema.js'
];

Expand Down
5 changes: 5 additions & 0 deletions javascript/web/LoadDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ function LoadDetailsInit(){

//ll('LoadDetailsInit done.');
}

// Embed the jQuery setup runner.
(function (){
jQuery(document).ready(function(){ LoadDetailsInit(); });
})();
8 changes: 1 addition & 7 deletions perl/lib/AmiGO/WebApp/HTMLClient.pm
Original file line number Diff line number Diff line change
Expand Up @@ -985,19 +985,13 @@ sub mode_load_details {
'com.jquery',
'com.bootstrap',
'com.jquery-ui',
'com.jquery.tablesorter',
'bbop',
'amigo2'
'com.jquery.tablesorter'
],
javascript =>
[
$self->{JS}->get_lib('GeneralSearchForwarding.js'),
$self->{JS}->get_lib('LoadDetails.js')
],
javascript_init =>
[
'LoadDetailsInit();'
],
content =>
[
'pages/load_details.tmpl'
Expand Down

0 comments on commit b14ab7d

Please sign in to comment.