Skip to content
This repository has been archived by the owner on Dec 20, 2022. It is now read-only.

Commit

Permalink
V 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
CapMousse committed Sep 11, 2016
1 parent 1d10911 commit 3dff24b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [3.0.3] - 2016-09-11
### Fixed
- Fix include complex module name (`a.b.c.d`)

## [3.0.2] - 2016-09-09
### Fixed
- CSS with script calling multiple time final callback
Expand Down
2 changes: 1 addition & 1 deletion include-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 include.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@


if (moduleFile.indexOf('//') == -1 && !/\.js/.test(moduleFile) && !/^http/.test(moduleFile)) {
moduleFile = moduleFile.replace('.', '/');
moduleFile = moduleFile.replace(/\./g, '/');
moduleFile = moduleFile + '.js';
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "include.js",
"version": "3.0.2",
"version": "3.0.3",
"description": "**Include.js** is a tiny Javascript loader. It can load normal javascript files but is more efficient with **web modules**.",
"main": "include-min.js",
"dependencies": {},
Expand Down

0 comments on commit 3dff24b

Please sign in to comment.