Tip: Click lines to highlight, hold ctrl/cmd to multi-select
http://codedumper.com/adefa (16-May @ 08:26)
Syntax Highlighted Code
- $.ajax({
- 'url' : settings.url,
- 'dataType' : 'json',
- 'data' : { 'tag' : currentTag.tag },
- 'async' : false, // wait until this is ajax hit is complete before continue
- 'success' : function (m) {
- matches = m.matches;
- }
- });
Plain Code
$.ajax({
'url' : settings.url,
'dataType' : 'json',
'data' : { 'tag' : currentTag.tag },
'async' : false, // wait until this is ajax hit is complete before continue
'success' : function (m) {
matches = m.matches;
}
});