forked from OrgGo/Tasks
45 lines
1.0 KiB
JavaScript
45 lines
1.0 KiB
JavaScript
/*
|
|
|
|
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');
|
|
});
|
|
|
|
if ($('#message').html()==''){
|
|
$('.notification').addClass('hidden');
|
|
} else {
|
|
$('.notification').fadeOut(9000);
|
|
}
|
|
$('.notification-close').click(function(){$('.notification').fadeOut("slow")})
|
|
|
|
/*$( 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();
|
|
}
|
|
}
|
|
);*/
|
|
|
|
});
|