Your IP : 216.73.216.220


Current Path : /proc/thread-self/cwd/static/adminhtml/Magento/backend/en_GB/Magento_Theme/js/
Upload File :
Current File : //proc/thread-self/cwd/static/adminhtml/Magento/backend/en_GB/Magento_Theme/js/form.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

define([
    'prototype'
], function () {
    'use strict';

    /**
     * @param {*} selected
     * @param {Object} defaultsById
     */
    function parentThemeOnChange(selected, defaultsById) {
        var statusBar = $$('.tab-item-link')[0],
            isChanged = statusBar.hasClassName('changed'),
            defaults;

        if (!isChanged) {
            defaults = defaultsById[selected];
            $('theme_title').value = defaults['theme_title'];
        }
    }

    window.parentThemeOnChange = parentThemeOnChange;
});