(self)
| 2791 | |
| 2792 | class ScriptSource: |
| 2793 | def __init__(self): |
| 2794 | self.src = None # if set, we have a script to load with a src attribute |
| 2795 | self.inline = None # if set, we have the contents of a script to write inline in a script |
| 2796 | |
| 2797 | def un_src(self): |
| 2798 | """Use this if you want to modify the script and need it to be inline.""" |
nothing calls this directly
no outgoing calls
no test coverage detected