Skip to content

Commit

Permalink
Rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Burgmer committed Apr 2, 2014
1 parent 9029a0d commit 939cf22
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -4,17 +4,17 @@ node_js:
env:
- DISPLAY=:99.0
addons:
firefox: "28.0"
firefox: '28.0'
before_script:
- "sh -e /etc/init.d/xvfb start"
deploy:
provider: npm
email: christoph.burgmer@gmail.com
api_key:
secure: EsvyCKvVOxMZDU5yvIGiwpqWTGlHUWZtcFLTaXqdJB4PseJQpDoWohFL+aH/N3cc5DgxwtCTRunwQ1jesGsQb++AWMZ5TeWuYDQXvvU6vs5oGY7wChqb70Ksjbcyp4MIzyUEotfwt+PGlDKPEOb/S3wnBBRjF9m5fWfnS4RjVZQ=
secure: HOwe6SvF5zFW40Bgv13pf7HPEOfo/BO2usIjirTZdBXS+sjZW/QvEjjn0+L0fdcZMBG20bcqWtW4j1tIYyenYsPXK8DsISxV9Oztz9KEIFxh2KaQ/qT41wRTKeB3NYlRnKCbd6bgR3dhc3NYDkweHJQpz/wdN6U5o/AV8wSTreM=
on:
tags: true
repo: cburgmer/inline-html-resources
repo: cburgmer/inlineresources
branches:
only:
- master
14 changes: 7 additions & 7 deletions README.md
@@ -1,14 +1,14 @@
inline-html-resources
=====================
inlineresources
===============

<a href="https://www.npmjs.org/package/inline-html-resources">
<img src="https://badge.fury.io/js/inline-html-resources.png"
<a href="https://www.npmjs.org/package/inlineresources">
<img src="https://badge.fury.io/js/inlineresources.png"
align="right" alt="NPM version" />
</a>

Inlines CSS, images, fonts and scripts in HTML documents. Works in the browser.
Inlines stylesheets, images, fonts and scripts in HTML documents. Works in the browser.

See the [API](https://github.com/cburgmer/inline-html-resources/wiki/API).
See the [API](https://github.com/cburgmer/inlineresources/wiki/API).

Limitations
-----------
Expand Down Expand Up @@ -36,7 +36,7 @@ For linting, tests and minification install Node.js and Firefox and run

$ ./go

[![Build Status](https://travis-ci.org/cburgmer/inline-html-resources.svg?branch=master)](https://travis-ci.org/cburgmer/inline-html-resources)
[![Build Status](https://travis-ci.org/cburgmer/inlineresources.svg?branch=master)](https://travis-ci.org/cburgmer/inlineresources)

Where is it used?
-----------------
Expand Down
4 changes: 2 additions & 2 deletions examples/bundlePage.html
Expand Up @@ -4,7 +4,7 @@
<title>Helper page for bundlePage.js</title>
<script type="text/javascript" src="../build/dependencies/xmlserializer.js"></script>
<script type="text/javascript" src="../node_modules/ayepromise/ayepromise.js"></script>
<script type="text/javascript" src="../dist/inline-html-resources.allinone.js"></script>
<script type="text/javascript" src="../dist/inlineresources.allinone.js"></script>
<script>
var sendMessage = function (cmd, content) {
console.log(JSON.stringify({
Expand Down Expand Up @@ -45,7 +45,7 @@

window.bundlePage = function (url) {
loadDocument(url).then(function (doc) {
inlineHtmlResources.inlineReferences(doc, {}).then(function (errors) {
inlineresources.inlineReferences(doc, {}).then(function (errors) {
var xhtml;

errors.forEach(function (error) {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -11,8 +11,8 @@
"CSS",
"webfonts"
],
"homepage": "http://www.github.com/cburgmer/inline-html-resources",
"bugs": "https://github.com/cburgmer/inline-html-resources/issues",
"homepage": "http://www.github.com/cburgmer/inlineresources",
"bugs": "https://github.com/cburgmer/inlineresources/issues",
"license": "MIT",
"author": {
"name": "Christoph Burgmer",
Expand All @@ -25,7 +25,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/cburgmer/inline-html-resources.git"
"url": "git://github.com/cburgmer/inlineresources.git"
},
"dependencies": {
"cssom": "~0.3.0",
Expand Down

0 comments on commit 939cf22

Please sign in to comment.