Import django-selectable

This will also be used to do /admin/ autocompletes.
This commit is contained in:
Magnus Hagander
2016-06-23 17:56:42 +02:00
parent 41e1b3b1b2
commit a6d3b44038
88 changed files with 12623 additions and 0 deletions

View File

@ -0,0 +1,61 @@
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
qunit: {
urls: [
'http://localhost:<%= server.port %>/selectable/tests/qunit/index.html?jquery=1.10.1&ui=1.10.3',
'http://localhost:<%= server.port %>/selectable/tests/qunit/index.html?jquery=1.9.1&ui=1.10.3',
'http://localhost:<%= server.port %>/selectable/tests/qunit/index.html?jquery=1.8.3&ui=1.9.2',
'http://localhost:<%= server.port %>/selectable/tests/qunit/index.html?jquery=1.7.2&ui=1.8.24',
'http://localhost:<%= server.port %>/selectable/tests/qunit/index.html?jquery=1.6.4&ui=1.8.24'
]
},
lint: {
files: ['selectable/static/selectable/js/*.js']
},
watch: {
files: '<config:lint.files>',
tasks: 'lint qunit'
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
browser: true,
undef: true,
trailing: true,
indent: 4
},
globals: {
jQuery: true,
// Django admin globals
django: true,
dismissAddAnotherPopup: true,
windowname_to_id: true,
html_unescape: true,
// Optional globals
djselectableAdminPatch: true,
djselectableAutoLoad: true,
// Grappelli namespace
grp: true
}
},
server: {
port: 8085
},
});
// Default task.
grunt.registerTask('default', 'server lint qunit');
};