mirror of
https://github.com/grafana/grafana.git
synced 2026-07-29 15:59:50 -05:00
prettier: ran on all files again, sorry. now settings are defined in package.json
This commit is contained in:
@@ -16,9 +16,7 @@ function outlineFixer() {
|
||||
|
||||
var set_css = function(css_text) {
|
||||
// Handle setting of <style> element contents in IE8
|
||||
!!style_element.styleSheet
|
||||
? (style_element.styleSheet.cssText = css_text)
|
||||
: (style_element.innerHTML = css_text);
|
||||
!!style_element.styleSheet ? (style_element.styleSheet.cssText = css_text) : (style_element.innerHTML = css_text);
|
||||
};
|
||||
|
||||
d.getElementsByTagName('HEAD')[0].appendChild(style_element);
|
||||
|
||||
Reference in New Issue
Block a user