Mercurial > lada > lada-client
comparison app/view/Viewport.js @ 693:817524db4017
Readonly was missing
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 26 Mar 2015 15:54:50 +0100 |
parents | d47ee7439f44 |
children | b400629a2575 |
comparison
equal
deleted
inserted
replaced
692:c31644b3d445 | 693:817524db4017 |
---|---|
42 text: 'Info', | 42 text: 'Info', |
43 menu: { | 43 menu: { |
44 items: [{ | 44 items: [{ |
45 text: 'About', | 45 text: 'About', |
46 action: 'about' | 46 action: 'about' |
47 }] | 47 }, { |
48 text: 'Zeit', | |
49 handler: function(){ | |
50 thetime = new Date(); | |
51 Ext.Msg.alert("Zeit", "Laut Ihrer lokalen Systemuhr ist es\n"+ | |
52 thetime.toString() + "\n\n" + | |
53 "Das entspricht der Serverzeit:\n" + | |
54 thetime.toUTCString() + "\n\n" + | |
55 "Alle Messwerte werden in GMT/UTC auf dem Server gespeichert. " + | |
56 "Ihr Webbrowser rechnet diese automatisch um." | |
57 ); | |
58 } | |
59 } | |
60 ] | |
48 } | 61 } |
49 }, '->', { | 62 }, '->', { |
50 xtype: 'box', | 63 xtype: 'box', |
51 autoEl: { | 64 autoEl: { |
52 tag: 'img', | 65 tag: 'img', |