This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Few guide using a vim text editor | |
- - - | |
*open vi* | |
`vi | |
*go to command mode* | |
`press Esc | |
*go to editor mode* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//because of colorpicker object use catch click event, I use onHover event to get the id's | |
$('tr.txtMark td input[type=text]').on('hover', function(){ | |
var sID = $(this).attr('id'); | |
$('#' + sID).colorpicker({ | |
title: "Header Background Colour", | |
dragggable: true, | |
closeOnOutside: false, | |
revert: true, | |
parts: ['header', 'map', 'bar', 'hex', 'preview', 'footer'], |
NewerOlder