Initial commit. Transferred from an Eclipse/Brainstorm environment to NodeJS.

This commit is contained in:
Wynne Crisman
2015-10-25 15:20:42 -07:00
commit 7bba9dc2b0
386 changed files with 22589 additions and 0 deletions

View 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);