(_config)
| 38 | } catch (e) {} |
| 39 | } |
| 40 | saveConfig(_config) { |
| 41 | let tmpObj = {}; |
| 42 | tmpObj.name = _config.name; |
| 43 | tmpObj.type = _config.type; |
| 44 | tmpObj.texture = _config.texture; |
| 45 | tmpObj.date = this.getDate(); |
| 46 | this.push2saveQ(); |
| 47 | } |
| 48 | getDate() { |
| 49 | let tD = this.date; |
| 50 | tD.year = tD.self.getFullYear(); |
nothing calls this directly
no test coverage detected