Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Updated README and Makefile/build.xml to build filenames as .qtip2. i…
Browse files Browse the repository at this point in the history
…n preparation for the release
  • Loading branch information
Craga89 committed Dec 8, 2010
1 parent ba98b31 commit c7f4700
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Makefile
Expand Up @@ -23,10 +23,10 @@ CSS_MODULES = ${SRC_DIR}/header.txt\
${SRC_DIR}/modal.css\
${SRC_DIR}/extra.css

QTIP = ${DIST_DIR}/jquery.qtip.js
QTIP_MIN = ${DIST_DIR}/jquery.qtip.min.js
QTIP_PACK = ${DIST_DIR}/jquery.qtip.pack.js
QTIP_CSS = ${DIST_DIR}/jquery.qtip.css
QTIP = ${DIST_DIR}/jquery.qtip2.js
QTIP_MIN = ${DIST_DIR}/jquery.qtip2.min.js
QTIP_PACK = ${DIST_DIR}/jquery.qtip2.pack.js
QTIP_CSS = ${DIST_DIR}/jquery.qtip2.css
QTIP_IMG = ${DIST_DIR}/images

QTIP_VER = `cat version.txt`
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
[qTip](http://craigsworks.com/projects/qtip/) - The jQuery tooltip plugin
[qTip2](http://craigsworks.com/projects/qtip2/) - Pretty powerful tooltips
================================

Pre-compiled scripts
Expand Down
14 changes: 7 additions & 7 deletions build.xml
Expand Up @@ -10,10 +10,10 @@
<property name="DIST_DIR" value="./dist" description="Compiled qTip folder" />
<property name="IMG_DIR" value="./images" description="Images folder" />

<property name="QTIP" value="${DIST_DIR}/jquery.qtip.js" />
<property name="QTIP_MIN" value="${DIST_DIR}/jquery.qtip.min.js" />
<property name="QTIP_PACK" value="${DIST_DIR}/jquery.qtip.pack.js" />
<property name="QTIP_CSS" value="${DIST_DIR}/jquery.qtip.css" />
<property name="QTIP" value="${DIST_DIR}/jquery.qtip2.js" />
<property name="QTIP_MIN" value="${DIST_DIR}/jquery.qtip2.min.js" />
<property name="QTIP_PACK" value="${DIST_DIR}/jquery.qtip2.pack.js" />
<property name="QTIP_CSS" value="${DIST_DIR}/jquery.qtip2.css" />
<property name="QTIP_IMG" value="${DIST_DIR}/images" />

<property name="PLUGINS" value="${SRC_DIR}/ajax.js ${SRC_DIR}/tips.js ${SRC_DIR}/imagemap.js ${SRC_DIR}/modal.js ${SRC_DIR}/bgiframe.js" />
Expand Down Expand Up @@ -46,7 +46,7 @@

<apply executable="java" parallel="false" verbose="true" dest="${DIST_DIR}">
<fileset dir="${DIST_DIR}">
<include name="jquery.qtip.js" />
<include name="jquery.qtip2.js" />
</fileset>

<arg line="-jar" />
Expand All @@ -56,7 +56,7 @@
<arg value="--js_output_file" />
<targetfile />
<arg value="--js" />
<mapper type="glob" from="jquery.qtip.js" to="tmpmin" />
<mapper type="glob" from="jquery.qtip2.js" to="tmpmin" />
</apply>

<concat destfile="${QTIP_MIN}">
Expand All @@ -79,7 +79,7 @@

<apply executable="java" parallel="false" verbose="true">
<fileset dir="${DIST_DIR}">
<include name="jquery.qtip.js" />
<include name="jquery.qtip2.js" />
</fileset>

<arg line="-jar" />
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.css → dist/jquery.qtip2.css
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Tue Dec 7 06:14:47 2010 +0000
* Date: Tue Dec 7 18:04:21 2010 +0000
*/

.ui-tooltip-accessible{
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.js → dist/jquery.qtip2.js
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Tue Dec 7 06:14:47 2010 +0000
* Date: Tue Dec 7 18:04:21 2010 +0000
*/

"use strict"; // Enable ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.js → dist/jquery.qtip2.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jquery.qtip.pack.js → dist/jquery.qtip2.pack.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c7f4700

Please sign in to comment.