Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/adefa (16-May @ 08:26)

remy

Syntax Highlighted Code

  1. $.ajax({
  2.     'url' : settings.url,
  3.     'dataType' : 'json',
  4.     'data' : { 'tag' : currentTag.tag },
  5.     'async' : false, // wait until this is ajax hit is complete before continue
  6.     'success' : function (m) {
  7.         matches = m.matches;
  8.     }
  9. });
  10.  
  11.  
  12.  

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;
    }
});


Codedump Run

Permalink: http://codedumper.com/adefa