Skip to content

Commit fe1ffbc

Browse files
committed
Merge branch 'develop'
2 parents d62258d + 1a09523 commit fe1ffbc

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ gem 'rails', '~> 5.0.1'
1212

1313
# Cortex-specific
1414
gem 'cortex-exceptions', '= 0.0.4'
15-
gem 'cortex-plugins-core', '= 0.10.0'
15+
gem 'cortex-plugins-core', '= 0.10.2'
1616

1717
# API
1818
gem 'grape', '~> 0.17'

Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ GEM
136136
concurrent-ruby (1.0.4)
137137
connection_pool (2.2.1)
138138
cortex-exceptions (0.0.4)
139-
cortex-plugins-core (0.10.0)
139+
cortex-plugins-core (0.10.2)
140140
cells (~> 4.1)
141141
cells-haml (~> 0.0.10)
142142
cells-rails (~> 0.0.6)
@@ -704,7 +704,7 @@ DEPENDENCIES
704704
cells-rails (~> 0.0.6)
705705
codeclimate-test-reporter (~> 0.6)
706706
cortex-exceptions (= 0.0.4)
707-
cortex-plugins-core (= 0.10.0)
707+
cortex-plugins-core (= 0.10.2)
708708
database_cleaner (~> 1.5)
709709
devise (~> 4.2.0)
710710
doorkeeper (~> 4.2)

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
# Cortex
1+
# Cortex CMS [![Build Status](https://semaphoreci.com/api/v1/projects/ec90715a-da8f-4960-bb64-f371850f9c98/813409/shields_badge.svg)](https://semaphoreci.com/content-enablement/cortex) [![Code Climate](https://codeclimate.com/repos/53f62c2869568018180036c9/badges/78e3c3c865b118bbd72b/gpa.svg)](https://codeclimate.com/repos/53f62c2869568018180036c9/feed) [![Test Coverage](https://codeclimate.com/repos/53f62c2869568018180036c9/badges/78e3c3c865b118bbd72b/coverage.svg)](https://codeclimate.com/repos/53f62c2869568018180036c9/coverage) [![Documentation Status](https://readthedocs.org/projects/cortex-cms/badge/?version=latest)](http://docs.cbcortex.com/en/latest/?badge=latest)
22

3-
[![Build Status](https://semaphoreci.com/api/v1/projects/ec90715a-da8f-4960-bb64-f371850f9c98/813409/shields_badge.svg)](https://semaphoreci.com/content-enablement/cortex)
4-
[![Code Climate](https://codeclimate.com/repos/53f62c2869568018180036c9/badges/78e3c3c865b118bbd72b/gpa.svg)](https://codeclimate.com/repos/53f62c2869568018180036c9/feed)
5-
[![Test Coverage](https://codeclimate.com/repos/53f62c2869568018180036c9/badges/78e3c3c865b118bbd72b/coverage.svg)](https://codeclimate.com/repos/53f62c2869568018180036c9/coverage)
6-
[![Documentation Status](https://readthedocs.org/projects/cortex-cms/badge/?version=latest)](http://docs.cbcortex.com/en/latest/?badge=latest)
3+
<img align="right" height="150"
4+
src="https://hiring-assets.careerbuilder.com/branding/cortex-logo.svg"
5+
alt="Cortex CMS Logo">
76

8-
Cortex is a [multitenant](https://en.wikipedia.org/wiki/Multitenancy) identity, content distribution/management and reporting platform built by the [Content Enablement][cb-ce-github] team at [CareerBuilder](https://github.com/careerbuilder). Its purpose is to provide central infrastructure for next-generation applications; exposing a single point of management while enabling quicker build-out of new software.
7+
Cortex CMS is a [multitenant](https://en.wikipedia.org/wiki/Multitenancy) identity, content distribution/management and reporting platform built by the [Content Enablement][cb-ce-github] team at [CareerBuilder](https://github.com/careerbuilder). Its purpose is to provide central infrastructure for next-generation applications; exposing a single point of management while enabling quicker build-out of new software.
98

109
Cortex follows a decentralized, API-only architecture - it is *not* built like Wordpress or Drupal, which are considered monolithic, all-in-one solutions.
1110

app/cells/wizard/field/show.haml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
= cell(Plugins::Core::TagCell, field_item, form: field_item_form, default_value: [], input_options: input, label_options: label).(:tag_picker)
1919

2020
- if field_item.field.field_type_instance.class == UserFieldType
21-
= cell(Plugins::Core::UserCell, field_item, form: field_item_form, default_value: User.all.first.id, user_data: User.all, input_options: input, label_options: label).(:dropdown)
21+
= cell(Plugins::Core::UserCell, field_item, form: field_item_form, user_data: User.all, input_options: input, label_options: label).(:dropdown)
2222

2323
- if field_item.field.field_type_instance.class == AssetFieldType
2424
= cell(Plugins::Core::AssetCell, field_item, form: field_item_form, input_options: input, label_options: label).(:input)

lib/tasks/employer/blog.rake

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ namespace :employer do
88
tree = Tree.new
99
tree.add_node({name: "CB Research"})
1010
tree.add_node({name: "Third Party Research"})
11-
tree.add_node({name: "N/A"})
1211

1312
tree
1413
end

public/ckeditor-plugins/media-selector/plugin.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
editor.addCommand('insertMedia', {
88
exec: function (editor) {
99
var mediaLibraryModal = $('#media-library-modal');
10-
mediaLibraryModal.openModal();
10+
mediaLibraryModal.modal('open');
1111

1212
global.media_select = {};
1313
global.media_select_defer = $.Deferred();
1414
global.media_select_defer.promise(global.media_select);
1515

1616
global.media_select.done(function (media) {
1717
editor.insertHtml(global.utility.getMediaHtml(media));
18-
mediaLibraryModal.closeModal();
18+
mediaLibraryModal.modal('close');
1919
});
2020
}
2121
});

0 commit comments

Comments
 (0)