(number)
| 96 | function GraphicsContext(shape){ |
| 97 | // Send data across |
| 98 | var toRGB = function(number){ |
| 99 | var string = parseInt(number).toString(16); |
| 100 | while(string.length < 6){ |
| 101 | string = "0" + string; |
| 102 | } |
| 103 | return "#" + string; |
| 104 | }; |
| 105 | var updateObject = function(method, params){ |
| 106 | self.postMessage(JSON.stringify({ |
| 107 | "action":"CallObjectMethod", |
no test coverage detected