LEFT | RIGHT |
1 /** | 1 /** |
2 * Licensed to the Apache Software Foundation (ASF) under one | 2 * Licensed to the Apache Software Foundation (ASF) under one |
3 * or more contributor license agreements. See the NOTICE file | 3 * or more contributor license agreements. See the NOTICE file |
4 * distributed with this work for additional information | 4 * distributed with this work for additional information |
5 * regarding copyright ownership. The ASF licenses this file | 5 * regarding copyright ownership. The ASF licenses this file |
6 * to you under the Apache License, Version 2.0 (the | 6 * to you under the Apache License, Version 2.0 (the |
7 * "License"); you may not use this file except in compliance | 7 * "License"); you may not use this file except in compliance |
8 * with the License. You may obtain a copy of the License at | 8 * with the License. You may obtain a copy of the License at |
9 * | 9 * |
10 * http://www.apache.org/licenses/LICENSE-2.0 | 10 * http://www.apache.org/licenses/LICENSE-2.0 |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 if (!data) { | 291 if (!data) { |
292 alert("Could not dump the current state."); | 292 alert("Could not dump the current state."); |
293 } | 293 } |
294 document.getElementById('gadgetState').innerHTML | 294 document.getElementById('gadgetState').innerHTML |
295 = gadgets.json.stringify(data); | 295 = gadgets.json.stringify(data); |
296 } | 296 } |
297 ); | 297 ); |
298 }; | 298 }; |
299 | 299 |
300 })(); | 300 })(); |
LEFT | RIGHT |