diff options
author | ji.ji <ji.ji@samsung.com> | 2013-04-30 10:20:13 +0900 |
---|---|---|
committer | ji.ji <ji.ji@samsung.com> | 2013-04-30 10:20:13 +0900 |
commit | 29fedf8dc754c400e560b4d9c5e3dac822b2a7b4 (patch) | |
tree | cca5df0566d06bb366facd3108e67fd4a4e0f765 | |
parent | 2c2fdae25aa8ac892f8114d3b839f373dc22efef (diff) | |
download | EventManager-29fedf8dc754c400e560b4d9c5e3dac822b2a7b4.tar.gz EventManager-29fedf8dc754c400e560b4d9c5e3dac822b2a7b4.tar.bz2 EventManager-29fedf8dc754c400e560b4d9c5e3dac822b2a7b4.zip |
[EventManager]update EventManager(tizen_2.1)
Change-Id: I89504be4f95ab590abf9a8e717af7bc771524c57
-rw-r--r-- | LICENSE.Flora | 26 | ||||
-rw-r--r-- | NOTICE | 6 | ||||
-rw-r--r-- | js/app.ui.js | 6 | ||||
-rw-r--r-- | js/main.js | 6 |
4 files changed, 25 insertions, 19 deletions
diff --git a/LICENSE.Flora b/LICENSE.Flora index fd90a36..4a0af40 100644 --- a/LICENSE.Flora +++ b/LICENSE.Flora @@ -1,6 +1,6 @@ Flora License -Version 1.0, April, 2013 +Version 1.1, April, 2013 http://floralicense.org/license/ @@ -119,17 +119,17 @@ Object form, provided that You meet the following conditions: Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only - and do not modify the License. - -You may add Your own attribution notices within Derivative Works -that You distribute, alongside or as an addendum to the NOTICE text -from the Work, provided that such additional attribution notices -cannot be construed as modifying the License. You may add Your own -copyright statement to Your modifications and may provide additional or -different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works -as a whole, provided Your use, reproduction, and distribution of -the Work otherwise complies with the conditions stated in this License. + and do not modify the License. You may add Your own attribution notices + within Derivative Works that You distribute, alongside or as an addendum + to the NOTICE text from the Work, provided that such additional attribution + notices cannot be construed as modifying the License. You may add Your own + copyright statement to Your modifications and may provide additional or + different license terms and conditions for use, reproduction, or + distribution of Your modifications, or for any such Derivative Works + as a whole, provided Your use, reproduction, and distribution of + the Work otherwise complies with the conditions stated in this License + and your own copyright statement or terms and conditions do not conflict + the conditions stated in the License including section 3. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work @@ -192,7 +192,7 @@ identification within third-party archives. Copyright [yyyy] [name of copyright owner] - Licensed under the Flora License, Version 1.0 (the "License"); + Licensed under the Flora License, Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -1,4 +1,4 @@ -Copyright (c) 2012 Samsung Electronics Co., Ltd. All rights reserved. -Except as noted, this software is licensed under Flora License, Version 1. -Please, see the LICENSE.Flora file for Flora License terms and conditions. +Copyright (c) 2013 Samsung Electronics Co., Ltd. All rights reserved. +Except as noted, this software is licensed under Flora License, Version 1.1 +Please, see the LICENSE.Flora file for Flora License, Version 1.1 terms and conditions. diff --git a/js/app.ui.js b/js/app.ui.js index f65165a..bc88929 100644 --- a/js/app.ui.js +++ b/js/app.ui.js @@ -48,6 +48,7 @@ function Ui() { pages.push(this.templateManager.get('new_event')); $('body').append(pages.join('')); + this.fixContentHeight(); this.home.init(); this.alarm.init(); @@ -526,6 +527,11 @@ function Ui() { setTimeout(function () { $.mobile.activePage.page('refresh'); }, 100); + }, + + fixContentHeight: function Ui_fixContentHeight() { + var contentHeight = screen.availHeight - $('div[data-role="header"]').outerHeight() - $('div[data-role="footer"]').outerHeight(); + $('div[data-role="content"]').css('height', contentHeight); } }; @@ -1,7 +1,7 @@ /* - * Copyright 2012 Samsung Electronics Co., Ltd + * Copyright 2013 Samsung Electronics Co., Ltd * - * Licensed under the Flora License, Version 1.0 (the "License"); + * Licensed under the Flora License, Version 1.1 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * @@ -76,4 +76,4 @@ var app = null; } }).init(); // run the loader -}());
\ No newline at end of file +}()); |