VIVO-922: updates for new faux listing functionality. New controller, template and js file, updated web.xml and site admin page, and updates to the all.properties

This commit is contained in:
Tim Worrall 2014-12-05 16:57:09 -05:00
parent 4da345d843
commit b8cb95d252
8 changed files with 400 additions and 2 deletions

View file

@ -0,0 +1,19 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
var fauxPropertiesListingUtils = {
onLoad: function() {
this.initObjects();
this.bindEventListeners();
},
initObjects: function() {
this.select = $('select#displayOption');
this.theForm = $('form#fauxListing');
},
bindEventListeners: function() {
this.select.change(function() {
fauxPropertiesListingUtils.theForm.submit();
});
}
}