summaryrefslogtreecommitdiff
path: root/frontend/js/photoblaster-0.1.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/js/photoblaster-0.1.js')
-rw-r--r--frontend/js/photoblaster-0.1.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/frontend/js/photoblaster-0.1.js b/frontend/js/photoblaster-0.1.js
deleted file mode 100644
index 43fc785..0000000
--- a/frontend/js/photoblaster-0.1.js
+++ /dev/null
@@ -1,22 +0,0 @@
-(function($){
- $.photoblaster = function(url, name, success, error){
- if (! url) return;
- var API_HEADER = "#@im",
- success = success || function (data) {},
- error = error || function () {},
- params = {
- 'url': url,
- 'name': name || 'api',
- 'transparent': true,
- 'fuzz': 5,
- };
- $.ajax({
- 'url': "http://asdf.us/cgi-bin/im/generate",
- 'data': params,
- 'dataType': "jsonp",
- 'success': success,
- 'error': error
- });
- };
-})(jQuery);
-