Ignore:
Timestamp:
01/28/15 09:14:40 (9 years ago)
Author:
emanuel.dima@uni-tuebingen.de
Message:
  1. alpha15: added support for new spec explains/search; misc UI corrections
File:
1 edited

Legend:

Unmodified
Added
Removed
  • SRUAggregator/trunk/src/main/resources/assets/js/main.js

    r5954 r5957  
    5454                        };
    5555                }
     56                // console.log("ajax", ajaxObject);
    5657                jQuery.ajax(ajaxObject);
    5758        },
     
    269270});
    270271
    271 React.render(React.createElement(Main, null), document.getElementById('reactMain') );
     272var Footer = React.createClass({displayName: 'Footer',
     273        render: function() {
     274                return  (
     275                        React.createElement("div", {className: "container"},
     276                                React.createElement("div", {id: "CLARIN_footer_left"},
     277                                                React.createElement("a", {title: "about", id: "aboutlink", href: "about"},
     278                                                React.createElement("span", {className: "glyphicon glyphicon-info-sign"}),
     279                                                React.createElement("span", null, "VERSION 2.0.0.α15")
     280                                        )
     281                                ),
     282                                React.createElement("div", {id: "CLARIN_footer_middle"},
     283                                        React.createElement("a", {title: "CLARIN ERIC", href: "https://www.clarin.eu/"},
     284                                        React.createElement("img", {src: "img/clarindLogo.png", alt: "CLARIN ERIC logo", style: {height:80}})
     285                                        )
     286                                ),
     287                                React.createElement("div", {id: "CLARIN_footer_right"},
     288                                        React.createElement("a", {title: "contact", href: "mailto:fcs@clarin.eu"},
     289                                                React.createElement("span", {className: "glyphicon glyphicon-envelope"}),
     290                                                React.createElement("span", null, " CONTACT")
     291                                        )
     292                                )
     293                        )
     294                );
     295        }
     296});
     297
     298React.render(React.createElement(Main, null),  document.getElementById('body'));
     299React.render(React.createElement(Footer, null), document.getElementById('footer') );
    272300
    273301})();
Note: See TracChangeset for help on using the changeset viewer.