(name)
| 3727 | }; |
| 3728 | |
| 3729 | var loadScriptByName = function(name) { |
| 3730 | var s = TM_storage.getValue(name, null); |
| 3731 | if (s) { |
| 3732 | s.textContent = TM_storage.getValue(name + scriptAppendix, s.textContent); |
| 3733 | if (!s.textContent) s = null; |
| 3734 | } |
| 3735 | return { script: s, |
| 3736 | cond: TM_storage.getValue(name + condAppendix, null) }; |
| 3737 | }; |
| 3738 | |
| 3739 | var storeScript = function(name, script, triggerSync) { |
| 3740 | if (triggerSync === undefined) triggerSync = true; |
no outgoing calls
no test coverage detected
searching dependent graphs…