graphite-dev team mailing list archive
-
graphite-dev team
-
Mailing list archive
-
Message #04521
Re: [Question #211981]: Graphite dashboard not working in IE
Question #211981 on Graphite changed:
https://answers.launchpad.net/graphite/+question/211981
MarkH proposed the following answer:
Looks like its similar to bugs 1023727 & 890743.
In v0.9.10 the fix was to remove extra commas from
<GRAPHITE_HOME>/webapp/content/js/dashboard.js
diff -u dashboard.js.orig dashboard.js
--- dashboard.js.orig 2013-12-06 23:05:11.766313391 +0000
+++ dashboard.js 2013-12-06 23:13:26.488300292 +0000
@@ -558,7 +558,7 @@
},
{ text: "From Saved Graph",
handler: newFromSavedGraph
- },
+ }
]
}
},
@@ -1978,21 +1978,21 @@
fieldLabel: "From",
name: 'sender',
width: 300,
- allowBlank: false,
+ allowBlank: false
});
var toField = new Ext.form.TextField({
fieldLabel: "To",
name: 'recipients',
width: 300,
- allowBlank: false,
+ allowBlank: false
});
var subjectField = new Ext.form.TextField({
fieldLabel: "Subject",
name: 'subject',
width: 300,
- allowBlank: false,
+ allowBlank: false
});
var msgField = new Ext.form.TextArea({
@@ -2041,7 +2041,7 @@
resizable: true,
modal: true,
layout: 'fit',
- items: [contactForm],
+ items: [contactForm]
});
win.show();
}
--
You received this question notification because you are a member of
graphite-dev, which is an answer contact for Graphite.