17 lines
502 B
Text
17 lines
502 B
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3. See
|
|
-# the COPYRIGHT file.
|
|
|
|
|
|
:javascript
|
|
function createUploader(){
|
|
var uploader = new qq.FileUploader({
|
|
element: document.getElementById('file-upload'),
|
|
params: {'album_id' : "#{@album.id}"},
|
|
allowedExtensions: ['jpg', 'jpeg', 'png'],
|
|
action: "/photos"
|
|
});
|
|
}
|
|
window.onload = createUploader;
|
|
|
|
#file-upload
|