Minor improvements
authorAlexander Ebert <ebert@woltlab.com>
Mon, 16 Nov 2015 23:51:42 +0000 (00:51 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Mon, 16 Nov 2015 23:51:42 +0000 (00:51 +0100)
wcfsetup/install/files/js/wcf.globalHelper.js

index c3d79feb8c83bc27bb7a9f93aea8e4cf844bb9a7..a8db731b623e3baec1ae7cc44b62de4e58855809 100644 (file)
@@ -11,7 +11,7 @@
         * 
         * @param       {Element}       element         target element
         * @param       {string}        attribute       attribute name
-        * @param       {mixed=}        value           attribute value, omit if attribute should be read
+        * @param       {?=}            value           attribute value, omit if attribute should be read
         * @return      {(string|undefined)}            attribute value, empty string if attribute is not set or undefined if `value` was omitted
         */
        window.elAttr = function(element, attribute, value) {
         * 
         * @param       {Element}       element         target element
         * @param       {string}        attribute       attribute name
-        * @param       {mixed=}        value           attribute value, omit if attribute should be read
+        * @param       {?=}            value           attribute value, omit if attribute should be read
         * @return      {(string|undefined)}            attribute value, empty string if attribute is not set or undefined if `value` was omitted
         */
        window.elData = function(element, attribute, value) {
         * @param       {Element}       element         DOM element
         */
        window.elHide = function(element) {
-               element.style.setProperty('display', 'none');
+               element.style.setProperty('display', 'none', '');
        };
        
        /**