Skip to content
Snippets Groups Projects
Commit 63cb9844 authored by Steffen Lindner's avatar Steffen Lindner Committed by GitHub
Browse files

Merge pull request #457 from nextcloud/fix/jquery-ui-autocomplete

Use server's jquery-ui instead of shipping our own
parents 2b516a4c f3776115
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,6 @@
'es6-promise': 'vendor/es6-promise/es6-promise.min',
handlebars: 'vendor/handlebars/handlebars',
ical: 'vendor/ical.js/build/ical.min',
'jquery-ui': 'vendor/jquery-ui/ui/minified/jquery-ui.custom.min',
marionette: 'vendor/backbone.marionette/lib/backbone.marionette',
underscore: 'vendor/underscore/underscore',
text: 'vendor/text/text'
......
......@@ -24,7 +24,8 @@ define([
'views/attachmentview',
'models/localattachment',
'models/attachment',
'radio'
'radio',
'jquery-ui'
], function(AttachmentView, LocalAttachment, Attachment, Radio) {
describe('AttachmentView', function() {
......
......@@ -16,8 +16,6 @@ define(function(require) {
var Marionette = require('marionette');
var Radio = require('radio');
var AttachmentTemplate = require('text!templates/attachment.html');
// we need jquery-ui for showing the progress bar on upload
require('jquery-ui');
return Marionette.View.extend({
tagName: 'li',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment