aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_events.js
diff options
context:
space:
mode:
authorHaakon Meland Eriksen <haakon.eriksen@far.no>2015-11-28 16:23:17 +0100
committerHaakon Meland Eriksen <haakon.eriksen@far.no>2015-11-28 16:23:17 +0100
commitcb7df797e1d5a87ff8b6dbb6c07faf68e3e725f7 (patch)
treed6d9a07a1358fb7b6acf030e268643cd667fd59b /view/js/mod_events.js
parent2b2723cb74dd74fc449d76f29edd7797b16c7e84 (diff)
downloadvolse-hubzilla-cb7df797e1d5a87ff8b6dbb6c07faf68e3e725f7.tar.gz
volse-hubzilla-cb7df797e1d5a87ff8b6dbb6c07faf68e3e725f7.tar.bz2
volse-hubzilla-cb7df797e1d5a87ff8b6dbb6c07faf68e3e725f7.zip
Removed my version of jot.tpl
Diffstat (limited to 'view/js/mod_events.js')
-rw-r--r--view/js/mod_events.js34
1 files changed, 8 insertions, 26 deletions
diff --git a/view/js/mod_events.js b/view/js/mod_events.js
index 270bf798b..0b7b3d24c 100644
--- a/view/js/mod_events.js
+++ b/view/js/mod_events.js
@@ -2,33 +2,15 @@
* JavaScript for mod/events
*/
-$(document).ready( function() { showHideFinishDate(); });
+$(document).ready( function() {
-function showHideFinishDate() {
+ enableDisableFinishDate();
+
+});
+
+function enableDisableFinishDate() {
if( $('#id_nofinish').is(':checked'))
- $('#event-finish-wrapper').hide();
+ $('#id_finish_text').prop("disabled", true);
else
- $('#event-finish-wrapper').show();
-}
-function eventGetStart() {
- //reply = prompt("{{$expirewhen}}", $('#jot-expire').val());
- $('#startModal').modal();
- $('#start-modal-OKButton').on('click', function() {
- reply=$('#start-date').val();
- if(reply && reply.length) {
- $('#start-text').val(reply);
- $('#startModal').modal('hide');
- }
- });
+ $('#id_finish_text').prop("disabled", false);
}
-function eventGetFinish() {
- //reply = prompt("{{$expirewhen}}", $('#jot-expire').val());
- $('#finishModal').modal();
- $('#finish-modal-OKButton').on('click', function() {
- reply=$('#finish-date').val();
- if(reply && reply.length) {
- $('#finish-text').val(reply);
- $('#finishModal').modal('hide');
- }
- });
-} \ No newline at end of file