/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to js/infotab.js

  • Committer: Suren A. Chilingaryan
  • Date: 2018-07-15 13:14:36 UTC
  • Revision ID: csa@suren.me-20180715131436-fmsg0qj9i9rd10yn
Decode URLs in Infotab parameters

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
                if (a = re.exec(i)) {
152
152
                    var node = document.getElementById(i);
153
153
                    if (node) {
154
 
                        node.value = adei.config.cfg_extra.custom[i];
 
154
                        node.value = decodeURI(adei.config.cfg_extra.custom[i]);
155
155
                    }
156
156
                }
157
157
            }