diff options
author | Igor Sfiligoi <isfiligoi@ucsd.edu> | 2013-03-23 16:12:34 +0000 |
---|---|---|
committer | Igor Sfiligoi <isfiligoi@ucsd.edu> | 2013-03-23 16:12:34 +0000 |
commit | 82592941fbb012a0581e63f3c22ceb5ae38a1026 (patch) | |
tree | cae3048261aefa669e0e4e198477838b41701f99 /src/examples/rrdJFlotSimple.html | |
parent | ccde18044f9a13d91d367550d72b61a03e32129a (diff) |
Better support for error in Chrome
Diffstat (limited to 'src/examples/rrdJFlotSimple.html')
-rw-r--r-- | src/examples/rrdJFlotSimple.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/examples/rrdJFlotSimple.html b/src/examples/rrdJFlotSimple.html index 4240f70..81645c4 100644 --- a/src/examples/rrdJFlotSimple.html +++ b/src/examples/rrdJFlotSimple.html @@ -108,6 +108,10 @@ // and performs the update of the Web page function update_fname_handler(bf) { var i_rrd_data=undefined; + if (bf.getLength()<1) { + alert("File "+fname+" is empty (possibly loading failed)!"); + return 1; + } try { var i_rrd_data=new RRDFile(bf); } catch(err) { |