<?php
Rickshaw.namespace('Rickshaw.Graph.JSONP');
Rickshaw.Graph.JSONP = Rickshaw.Class.create( Rickshaw.Graph.Ajax, {
request: function() {
$.ajax( {
url: this.dataURL,
dataType: 'jsonp',
success: this.success.bind(this),
error: this.error.bind(this)
} );
}
} );
?>