mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
D510 renamed this method to stringify.
This commit is contained in:
parent
b548b5166b
commit
652baee54c
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ JX.behavior('phabricator-keyboard-shortcuts', function(config) {
|
|||
return;
|
||||
}
|
||||
var desc = manager.getShortcutDescriptions();
|
||||
var data = {keys : JX.JSON.serialize(desc)};
|
||||
var data = {keys : JX.JSON.stringify(desc)};
|
||||
workflow = new JX.Workflow(config.helpURI, data)
|
||||
.setCloseHandler(function() {
|
||||
workflow = null;
|
||||
|
|
|
@ -115,7 +115,7 @@ JX.install('HeraldRuleEditor', {
|
|||
this._config.actions[k][1] = this._getActionTarget(k);
|
||||
}
|
||||
|
||||
rule.value = JX.JSON.serialize({
|
||||
rule.value = JX.JSON.stringify({
|
||||
conditions: this._config.conditions,
|
||||
actions: this._config.actions
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue