﻿/* ********************************************************** */
/* Delete command                                             */        
/* ********************************************************** */
(function() {
    $(document).ready(function() {
        // Retrieve.
        var command = GuiController.getCommand('DisableItem');
        if (!command) {
            return;
        }
        var selector = document.all(selectorLanguageClientID);
        if (selector !== undefined){ 
            selector.disabled = 'disabled';
        }        
    });
})();


