()
| 140 | |
| 141 | // Init theming |
| 142 | var init = function() { |
| 143 | // Add css container |
| 144 | $css.appendTo($("body")); |
| 145 | |
| 146 | // Bind user settings changement |
| 147 | userSettings.change(updateCurrentTheme); |
| 148 | |
| 149 | // Update current theme |
| 150 | updateCurrentTheme(); |
| 151 | |
| 152 | return Q(); |
| 153 | }; |
| 154 | |
| 155 | return { |
| 156 | 'init': init, |
nothing calls this directly
no test coverage detected