Thứ Tư, 24 tháng 12, 2014

Keymap sublime text

[
    { "keys": ["f1"], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" } },
    { "keys": ["f2"], "command": "insert_snippet", "args": {"contents": "<?php ${0:$SELECTION} ?>"}},
    { "keys": ["f3"], "command": "insert_snippet", "args": {"contents": "  ?> ${0:$SELECTION} <?php "}},
    { "keys": ["f4"], "command": "insert_snippet", "args": {"contents": "  // Đánh dấu phần này "}},
    { "keys": ["ctrl+m"], "command": "sftp_browse" },
    { "keys": ["ctrl+u"], "command": "sftp_upload_file" },
    { "keys": ["shift+f4"], "command": "toggle_side_bar" }
]

Thứ Hai, 15 tháng 12, 2014

Dialog jquery

                function show_dialog(mes){
                    if(!$(".dialog_jquery").width())
                        $("body").append('<div class="dialog_jquery"></div>');  
                    $(".dialog_jquery").text(mes);
                    $(".dialog_jquery").fadeIn(200).delay(1000).fadeOut(200);
                    var width_b=$(window).width()/2 - ($(".dialog_jquery").width()/2);
                    $(".dialog_jquery").css({top:"10px",left:width_b+"px"});                                                  
                }.dialog_jquery {
  background: none repeat scroll 0 0 white;
  border: 5px solid rgba(80, 78, 78, 0.58);
  border-radius: 5px;
  color: black;
  left: 0;
  padding: 18px;
  position: fixed;
  top: 0;
  z-index: 444;
}