Added lots more demo data on Github to help demonstrate the ease of use. Adding feature to insert custom scripting during install. Adding easy issue tracking, and member notice board. Many bug fixes, to the compiler and general improvements.
This commit is contained in:
11
admin/custom/form.js
Normal file
11
admin/custom/form.js
Normal file
@ -0,0 +1,11 @@
|
||||
jQuery(document).ready(function() {
|
||||
jQuery('#tour_favorite').click(function() {
|
||||
if (jQuery(this).attr('rel') == 'no') {
|
||||
jQuery('#tour_favorite').removeClass('favorite_inactive')
|
||||
.addClass('favorite_active').attr('rel', 'yes');
|
||||
} else {
|
||||
jQuery('#tour_favorite').removeClass('favorite_active')
|
||||
.addClass('favorite_inactive').attr('rel', 'no');
|
||||
};
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user