TaskFlow/public/static/js/script.js

83 lines
1.9 KiB
Go
Raw Normal View History

2015-11-13 17:04:42 +08:00
/*
This is a javascript file for omninotesweb
============
Author: Suraj patil
Updated: January 2015
keyCode: n-110
*/
$(document).ready(function(){
/*on() is used instead of click because click can be used only on static elements, and on() is to be used when you add
elements dynamically*/
$('[data-toggle="tooltip"]').tooltip();
//
// $('.items').openOnHover(function(){
// alert();
// });
$('.floating-action-icon-add').click(function(){
$('#addNoteModal').modal('show');
});
2015-11-22 11:51:29 +08:00
// $("#datepicker").datepicker();
2016-07-30 23:21:16 +08:00
2016-02-06 14:57:28 +08:00
$('#editCatFrmBtn').click(function(){
$('#EditForm').toggleClass('hidden')
});
$('#searchFormBtn').click(function(){
$('#SearchForm').toggleClass('hidden')
});
2016-02-06 18:02:58 +08:00
$('#toggleAddFileGrp').click(function(){
$('#file-group').toggleClass('hidden');
$('#toggleAddFileGrp').addClass('hidden') ;
});
2016-02-06 14:57:28 +08:00
$("#noti").click(
function(){
this.fadeOut();
}
);
if ($('#actlMsg').html()==''){
2015-11-22 11:51:29 +08:00
$('.notification').addClass('hidden');
} else {
$('.notification').fadeOut(9000);
}
2016-02-06 02:08:52 +08:00
$('.btnMessage').click(function(){$('.notification').fadeOut()})
2015-11-13 17:04:42 +08:00
/*$( document ).keypress(
function(event){
if ( event.which == 110 ) { //bind the 'n' key to add note
$('#addNoteModal').modal('show');
}
if (event.which==109 ) { //binds the 'm' key to show the navigation drawer
$('.sidebar-toggle').click();
}
}
);*/
$("#addNoteBtn").on("click", function() {
this.preventDefaults();
var task_id = $("#task-id").val();
$.ajax({
url: "/tasks/" + task_id,
type: "POST",
data: {'title':'randome note', 'content':'this and that'}
}).done(function(res, status) {
console.log(status, res);
var response = res
$("#timeline").append(response)
});
});
$('.toggle').click(function(){
$(this).next().toggle();
});
2015-11-13 17:04:42 +08:00
});