0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2025-04-10 11:36:53 +02:00

Use remote jquery (mobile)

This commit is contained in:
peteruithoven 2014-05-08 14:59:07 +02:00
parent 632422b3b1
commit 269f5412ce
679 changed files with 16 additions and 5 deletions
.gitignoreGruntfile.js
js/libs
.jquery-1.11.0.min.js
.jquery.mobile/demos
_assets
_search
backbone-requirejs
body-bar-classes
button-markup
button
checkboxradio-checkbox
checkboxradio-radio
collapsible-dynamic
collapsible
collapsibleset
controlgroup-dynamic
controlgroup
css/themes/default/images

1
.gitignore vendored

@ -1,6 +1,5 @@
credentials.php credentials.php
.* .*
**/.*/**
!/.gitignore !/.gitignore
www/js/*.js www/js/*.js
www/css/*.css www/css/*.css

@ -121,13 +121,19 @@ module.exports = function(grunt) {
// } // }
src: ['js/**.js'], src: ['js/**.js'],
}, },
clean: {
main: {
src: "www/css/images"
}
},
copy: { copy: {
main: { main: {
expand: true, expand: true,
nonull: true, nonull: true,
cwd: "js/libs/jquery.mobile/images/", cwd: "js/libs/jquery.mobile/images/",
src: "**", src: "**",
dest: "www/css/images/" dest: "www/css/images/",
filter: grunt.file.exists
} }
}, },
watch: { watch: {
@ -151,6 +157,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-autoprefixer'); grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-cssmin'); grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
// Default task. // Default task.
grunt.registerTask('default', [ grunt.registerTask('default', [
@ -160,6 +167,7 @@ module.exports = function(grunt) {
'cssmin', 'cssmin',
'uglify', 'uglify',
'jshint', 'jshint',
'clean',
'copy', 'copy',
'watch' 'watch'
]); ]);

Some files were not shown because too many files have changed in this diff Show More