Merged PetitTetonApps with the website now that the deployment server always uses SSL. Used the Apps more recent implementation of NodeJS/Express.
This commit is contained in:
11
public/admin/js/jquery.display.js
Normal file
11
public/admin/js/jquery.display.js
Normal file
@@ -0,0 +1,11 @@
|
||||
(function($) {
|
||||
$.fn.display = function(show) {
|
||||
if(this.hasClass('inline')) {
|
||||
this.css('visibility', show ? 'visible' : 'hidden');
|
||||
}
|
||||
else {
|
||||
if(show) this.show();
|
||||
else this.hide();
|
||||
}
|
||||
};
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user