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
BEFORE: | |
function( | |
_, $, | |
id) { | |
AFTER: | |
function (_, $, id) { |
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
<asp:textbox id="date" runat="server" /> | |
<brew:datepicker for="date" runat="server" /> |
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
using System; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.Linq; | |
using System.Reflection; | |
using System.Text; | |
using System.Windows.Forms; | |
using System.Windows.Forms.VisualStyles; | |
namespace VisualStyleGetFontTest { |
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
var _selectDate = $.datepicker._selectDate, | |
selectHook = function(id, dateStr){ | |
var target = $(id), | |
inst = this._getInst(target[0]), | |
result = _selectDate.call(this, id, dateStr); | |
onAfterSelect && onAfterSelect(inst); | |
return result; | |
}, |
NewerOlder