mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-23 21:55:49 +00:00
fixed build files to include custom select
This commit is contained in:
parent
cfe12241a2
commit
2b3153365f
2 changed files with 5 additions and 3 deletions
5
Makefile
5
Makefile
|
|
@ -60,6 +60,7 @@ JSFILES = js/jquery.ui.widget.js \
|
|||
js/jquery.mobile.forms.button.js \
|
||||
js/jquery.mobile.forms.slider.js \
|
||||
js/jquery.mobile.forms.textinput.js \
|
||||
js/jquery.mobile.forms.select.custom.js \
|
||||
js/jquery.mobile.forms.select.js \
|
||||
js/jquery.mobile.buttonMarkup.js \
|
||||
js/jquery.mobile.controlGroup.js \
|
||||
|
|
@ -126,7 +127,7 @@ notify:
|
|||
@@echo "The files have been built and are in " $$(pwd)/${OUTPUT}
|
||||
|
||||
# Pull the latest commits. This is used for the nightly build but can be used to save some keystrokes
|
||||
pull:
|
||||
pull:
|
||||
@@git pull --quiet
|
||||
|
||||
# Zip the 4 files and the theme images into one convenient package
|
||||
|
|
@ -161,7 +162,7 @@ nightly: pull zip
|
|||
# Change the empty paths to the location of this nightly file
|
||||
@@find ${VER} -type f -name '*.html' -exec sed -i 's|href="themes/default/"|href="${NIGHTLY_WEBPATH}/${DIR}.min.css"|g' {} \;
|
||||
@@find ${VER} -type f -name '*.html' -exec sed -i 's|src="js/jquery.js"|src="http://code.jquery.com/jquery-${JQUERY}.min.js"|' {} \;
|
||||
@@find ${VER} -type f -name '*.html' -exec sed -i 's|src="js/"|src="${NIGHTLY_WEBPATH}/${DIR}.min.js"|g' {} \;
|
||||
@@find ${VER} -type f -name '*.html' -exec sed -i 's|src="js/"|src="${NIGHTLY_WEBPATH}/${DIR}.min.js"|g' {} \;
|
||||
|
||||
# Move the demos into the output folder
|
||||
@@mv ${VER} ${OUTPUT}/demos
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
js/jquery.mobile.core.js,
|
||||
js/jquery.mobile.navigation.js,
|
||||
js/jquery.mobile.transition.js,
|
||||
js/jquery.mobile.degradeInputs.js,
|
||||
js/jquery.mobile.degradeInputs.js,
|
||||
js/jquery.mobile.dialog.js,
|
||||
js/jquery.mobile.page.sections.js,
|
||||
js/jquery.mobile.collapsible.js,
|
||||
|
|
@ -44,6 +44,7 @@
|
|||
js/jquery.mobile.forms.button.js,
|
||||
js/jquery.mobile.forms.slider.js,
|
||||
js/jquery.mobile.forms.textinput.js,
|
||||
js/jquery.mobile.forms.select.custom.js,
|
||||
js/jquery.mobile.forms.select.js,
|
||||
js/jquery.mobile.buttonMarkup.js,
|
||||
js/jquery.mobile.controlGroup.js,
|
||||
|
|
|
|||
Loading…
Reference in a new issue