PHP Classes

File: public/js/app.js

Recommend this page to a friend!
  Classes of saber tabatabaee   Laravel PHP Task Manager   public/js/app.js   Download  
File: public/js/app.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel PHP Task Manager
Application to manage project tasks
Author: By
Last change:
Date: 4 years ago
Size: 1,662 bytes
 

Contents

Class file image Download
$(document).ready(function() { $.fn.editable.defaults.mode = 'popup'; // $('#card_color').editable({ // inputclass: 'select-input', // value: 1, // source: [ // {value: 1, text: ''}, // {value: 2, text: 'Yellow'}, // {value: 3, text: 'Green'}, // {value: 4, text: 'Red'}, // {value: 5, text: 'Blue'}, // {value: 6, text: 'Purple'} // ], // placement: 'right', // }); // $('#event').editable({ // placement: 'top', // combodate: { // firstItem: 'name' // } // }); }); $(document).ready(function() { $(document).on('mouseenter', '.sub-task-con', function(event) { event.preventDefault(); $(this).find("a.delete-task").show(); }); $(document).on('mouseleave', '.sub-task-con', function(event) { event.preventDefault(); $(this).find("a.delete-task").hide(); }); }); $("button.navbar-toggle").on("click", function () { $(".overlay").fadeIn('slow'); }); $(function(){ $("#brand-name").typed({ strings: ["????? ?????", "??? ????? ???????", "???? ?????? ????? :)"], typeSpeed: 100 }); }); $(document).ready(function(){ $('[data-toggle="tooltip"]').tooltip(); }); // var listCards = []; // $('.bcategory-list').each(function(index, list){ // var updateListId = $(list).data('listId'); // var cards = $(list).find('.ui-sortable').sortable('toArray'); // listCards.push({ // listId: updateListId, // cards: cards // }); // });