Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit 6dc6881

Browse files
committed
fixing CORS header in releases.js; bumping patch version
1 parent ac77d29 commit 6dc6881

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/routes/api/releases.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var router = require('express').Router(),
66
response = require('../../helpers/response');
77

88
router.use(function(req, res, next) {
9-
res.header("Access-Control-Allow-Origin": "*");
9+
res.header("Access-Control-Allow-Origin", "*");
1010
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
1111
next();
1212
});

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollConnect",
3-
"version": "1.1.13",
3+
"version": "1.1.14",
44
"dependencies": {
55
"jquery": "*",
66
"bootstrap": "*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.13",
2+
"version": "1.1.14",
33
"private": true,
44
"devDependencies": {
55
"grunt": "^0.4.5",

project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollConnect",
3-
"version": "1.1.13",
3+
"version": "1.1.14",
44
"main": [
55
"src/plugins/*.js",
66
"src/widgets/*.js",

0 commit comments

Comments
 (0)