fix(example/url-viewer): do not interpolate content type

This commit is contained in:
Nico Rehwaldt 2014-04-09 16:37:19 +02:00
parent 0c48002ada
commit b559d6567c
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@
log('attempting to open <' + url + '>');
$.get(url, function(xml) {
$.ajax(url, { dataType : 'text' }).done(function(xml) {
viewer.importXML(xml, function(err) {