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

Commit

Permalink
v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
steffans committed Jul 2, 2015
1 parent 0bad808 commit d844229
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vue-resource",
"main": "dist/vue-resource.js",
"description": "A web request service for Vue.js",
"version": "0.1.3",
"version": "0.1.4",
"homepage": "https://github.com/vuejs/vue-resource",
"license": "MIT",
"ignore": [
Expand Down
14 changes: 10 additions & 4 deletions dist/vue-resource.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* vue-resource v0.1.4
* https://github.com/vuejs/vue-resource
* Released under the MIT License.
*/

/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
Expand Down Expand Up @@ -96,7 +102,7 @@
return '';
});

if (!url.match(/^(https?:)?\//) && options.root) {
if (options.root !== false && !url.match(/^(https?:)?\//)) {
url = options.root + '/' + url;
}

Expand Down Expand Up @@ -124,7 +130,7 @@

Url.options = {
url: '',
root: '',
root: false,
params: {}
};

Expand Down Expand Up @@ -231,7 +237,7 @@

/***/ },
/* 2 */
/***/ function(module, exports, __webpack_require__) {
/***/ function(module, exports) {

/**
* Utility functions.
Expand Down Expand Up @@ -557,7 +563,7 @@

/***/ },
/* 4 */
/***/ function(module, exports, __webpack_require__) {
/***/ function(module, exports) {

/**
* Promise polyfill (https://gist.github.com/briancavalier/814313)
Expand Down
8 changes: 7 additions & 1 deletion dist/vue-resource.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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-resource",
"version": "0.1.3",
"version": "0.1.4",
"description": "A web request service for Vue.js",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit d844229

Please sign in to comment.