Skip to content

Commit

Permalink
updating frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
drewkerrigan committed Apr 15, 2016
1 parent bf49cf0 commit 9e75ddd
Show file tree
Hide file tree
Showing 10 changed files with 589 additions and 330 deletions.
7 changes: 4 additions & 3 deletions priv/ember_riak_explorer/dist/assets/ember-riak-explorer.css
Original file line number Diff line number Diff line change
Expand Up @@ -7604,7 +7604,8 @@ button.close {
.table tbody tr td {
padding: 10px 15px;
vertical-align: middle;
text-align: left; }
text-align: left;
border-top: 1px solid rgba(221, 221, 221, 0.2); }

.list-inline {
margin: 0; }
Expand Down Expand Up @@ -8118,7 +8119,7 @@ p:last-child {
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
justify-content: space-between;
padding: 10px 20px;
padding: 20px;
border-bottom: 1px solid #E4E4E4; }
.dashboard-module .module-header .module-label {
font-size: 18px;
Expand Down Expand Up @@ -8502,7 +8503,7 @@ pre.editable {
.ember-power-select .ember-power-select-trigger:focus {
outline: none; }

.table.cluster-table .riak-type {
.table.cluster-table .object-type {
min-width: 125px; }

.cluster-ops-container .repl-action-select {
Expand Down
228 changes: 114 additions & 114 deletions priv/ember_riak_explorer/dist/assets/ember-riak-explorer.css.map

Large diffs are not rendered by default.

618 changes: 444 additions & 174 deletions priv/ember_riak_explorer/dist/assets/ember-riak-explorer.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions priv/ember_riak_explorer/dist/assets/test-support.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion priv/ember_riak_explorer/dist/assets/test-support.map

Large diffs are not rendered by default.

53 changes: 21 additions & 32 deletions priv/ember_riak_explorer/dist/assets/vendor.js
Original file line number Diff line number Diff line change
Expand Up @@ -2635,7 +2635,7 @@ function matcherFromTokens( tokens ) {
return setMatcher(
i > 1 && elementMatcher( matchers ),
i > 1 && toSelector(
// If the preceding token was a descendant combinator, write an implicit any-element `*`
// If the preceding token was a descendant combinator, insert an implicit any-element `*`
tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
).replace( rtrim, "$1" ),
matcher,
Expand Down Expand Up @@ -4695,7 +4695,7 @@ function createSafeFragment( document ) {
support.leadingWhitespace = div.firstChild.nodeType === 3;

// Make sure that tbody elements aren't automatically inserted
// IE will write them into empty tables
// IE will insert them into empty tables
support.tbody = !div.getElementsByTagName( "tbody" ).length;

// Make sure that link elements get serialized correctly by innerHTML
Expand Down Expand Up @@ -6721,7 +6721,7 @@ var swap = function( elem, options, callback, args ) {
var ret, name,
old = {};

// Remember the old values, and write the new ones
// Remember the old values, and insert the new ones
for ( name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
Expand Down Expand Up @@ -9552,7 +9552,7 @@ function ajaxConvert( s, response, jqXHR, isSuccess ) {
if ( conv === true ) {
conv = converters[ conv2 ];

// Otherwise, write the intermediate dataType
// Otherwise, insert the intermediate dataType
} else if ( converters[ conv2 ] !== true ) {
current = tmp[ 0 ];
dataTypes.unshift( tmp[ 1 ] );
Expand Down Expand Up @@ -12153,7 +12153,7 @@ enifed('backburner', ['exports', 'backburner/utils', 'backburner/platform', 'bac

this._reinstallStalledTimerTimeout();

// find position to write
// find position to insert
var i = _backburnerBinarySearch.default(executeAt, this._timers);

this._timers.splice(i, 0, executeAt, fn);
Expand Down Expand Up @@ -21111,7 +21111,7 @@ enifed('ember-htmlbars/keywords/input', ['exports', 'ember-metal/debug', 'ember-
The helper allows some user events to send actions.

* `enter`
* `write-newline`
* `insert-newline`
* `escape-press`
* `focus-in`
* `focus-out`
Expand Down Expand Up @@ -21799,7 +21799,7 @@ enifed('ember-htmlbars/keywords/textarea', ['exports'], function (exports) {
The helper allows some user events to send actions.

* `enter`
* `write-newline`
* `insert-newline`
* `escape-press`
* `focus-in`
* `focus-out`
Expand Down Expand Up @@ -36541,7 +36541,7 @@ enifed('ember-routing/system/route', ['exports', 'ember-metal/core', 'ember-meta
combinedQueryParameterConfiguration = mergeEachQueryParams(normalizedControllerQueryParameterConfiguration, queryParameterConfiguraton);
} else if (hasRouterDefinedQueryParams) {
// the developer has not defined a controller but *has* supplied route query params.
// Generate a class for them so we can later write default values
// Generate a class for them so we can later insert default values
var generatedControllerClass = _emberRoutingSystemGenerate_controller.generateControllerFactory(_containerOwner.getOwner(this), controllerName);
controllerProto = generatedControllerClass.proto();
combinedQueryParameterConfiguration = queryParameterConfiguraton;
Expand Down Expand Up @@ -37839,7 +37839,7 @@ enifed('ember-routing/system/route', ['exports', 'ember-metal/core', 'ember-meta
}
});
```
The default `serialize` method will write the model's `id` into the
The default `serialize` method will insert the model's `id` into the
route's dynamic segment (in this case, `:post_id`) if the segment contains '_id'.
If the route has multiple dynamic segments or does not contain '_id', `serialize`
will return `Ember.getProperties(model, params)`
Expand Down Expand Up @@ -40411,7 +40411,7 @@ enifed('ember-routing-htmlbars/keywords/render', ['exports', 'ember-metal/debug'
'use strict';

/**
Calling ``{{render}}`` from within a template will write another
Calling ``{{render}}`` from within a template will insert another
template that matches the provided name. The inserted template will
access its properties on its own controller (rather than the controller
of the parent template).
Expand Down Expand Up @@ -45454,16 +45454,16 @@ enifed('ember-runtime/mixins/mutable_array', ['exports', 'ember-metal/property_g
},

/**
This will use the primitive `replace()` method to write an object at the
This will use the primitive `replace()` method to insert an object at the
specified index.
```javascript
var colors = ['red', 'green', 'blue'];
colors.insertAt(2, 'yellow'); // ['red', 'green', 'yellow', 'blue']
colors.insertAt(5, 'orange'); // Error: Index out of range
```
@method insertAt
@param {Number} idx index of write the object at.
@param {Object} object object to write
@param {Number} idx index of insert the object at.
@param {Object} object object to insert
@return {Ember.Array} receiver
@public
*/
Expand Down Expand Up @@ -46995,7 +46995,7 @@ enifed('ember-runtime/system/array_proxy', ['exports', 'ember-metal/debug', 'emb
@method replaceContent
@param {Number} idx The starting index
@param {Number} amt The number of items to remove from the content.
@param {Array} objects Optional array of objects to write or null if no
@param {Array} objects Optional array of objects to insert or null if no
objects.
@return {void}
@private
Expand Down Expand Up @@ -48971,9 +48971,9 @@ enifed('ember-runtime/system/string', ['exports', 'ember-metal/debug', 'ember-me
of "%@" in your string and substitute them with the arguments you pass into
this method. If you want to control the specific order of replacement,
you can add a number after the key as well to indicate which argument
you want to write.
you want to insert.
Ordered insertions are most useful when building loc strings where values
you need to write may appear in different orders.
you need to insert may appear in different orders.
```javascript
"Hello %@ %@".fmt('John', 'Doe'); // "Hello John Doe"
"Hello %@2, %@1".fmt('John', 'Doe'); // "Hello Doe, John"
Expand Down Expand Up @@ -52935,10 +52935,10 @@ enifed('ember-views/mixins/text_support', ['exports', 'ember-metal/property_get'
/**
Allows you to specify a controller action to invoke when either the `enter`
key is pressed or, in the case of the field being a textarea, when a newline
is inserted. To use this method, give your field an `write-newline`
is inserted. To use this method, give your field an `insert-newline`
attribute. The value of that attribute should be the name of the action
in your controller that you wish to invoke.
For an example on how to use the `write-newline` attribute, please
For an example on how to use the `insert-newline` attribute, please
reference the example near the top of this file.
@method insertNewline
@param {Event} event
Expand Down Expand Up @@ -61583,7 +61583,7 @@ enifed('route-recognizer', ['exports', 'route-recognizer/dsl'], function (export
// Insert the new state as a child of the current state
this.nextStates.push(state);

// If this character specification repeats, write the new state as a child
// If this character specification repeats, insert the new state as a child
// of itself. Note that this will not trigger an infinite loop because each
// transition during recognition consumes a character.
if (charSpec.repeat) {
Expand Down Expand Up @@ -102528,7 +102528,7 @@ define('ember-data/transform', ['exports', 'ember'], function (exports, _ember)
define("ember-data/version", ["exports"], function (exports) {
"use strict";

exports["default"] = "2.4.3";
exports["default"] = "2.4.3+a3e2521f85";
});
define('ember-getowner-polyfill/fake-owner', ['exports', 'ember'], function (exports, _ember) {
'use strict';
Expand Down Expand Up @@ -108044,7 +108044,7 @@ define('ivy-tabs/components/ivy-tab-panel', ['exports', 'ember'], function (expo
* @extends Ember.Component
*/
exports['default'] = _ember['default'].Component.extend({
attributeBindings: ['aria-hidden', 'aria-labelledby', 'role'],
attributeBindings: ['aria-labelledby', 'role'],
classNames: ['ivy-tab-panel'],
classNameBindings: ['active'],

Expand All @@ -108058,17 +108058,6 @@ define('ivy-tabs/components/ivy-tab-panel', ['exports', 'ember'], function (expo
_ember['default'].run.once(this, this._unregisterWithTabsContainer);
},

/**
* Tells screenreaders whether or not the panel is visible.
*
* See http://www.w3.org/TR/wai-aria/states_and_properties#aria-hidden
*
* @property aria-hidden
* @type Boolean
* @readOnly
*/
'aria-hidden': _ember['default'].computed.not('isSelected').readOnly(),

/**
* Tells screenreaders which tab labels this panel.
*
Expand Down
2 changes: 1 addition & 1 deletion priv/ember_riak_explorer/dist/assets/vendor.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion priv/ember_riak_explorer/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="ember-riak-explorer/config/environment" content="%7B%22modulePrefix%22%3A%22ember-riak-explorer%22%2C%22podModulePrefix%22%3A%22ember-riak-explorer/pods%22%2C%22environment%22%3A%22development%22%2C%22baseURL%22%3Anull%2C%22locationType%22%3A%22hash%22%2C%22pageSize%22%3A500%2C%22contentSecurityPolicy%22%3A%7B%22font-src%22%3A%22%27self%27%20data%3A%20code.ionicframework.com%22%2C%22style-src%22%3A%22%27self%27%20%27unsafe-inline%27%20code.ionicframework.com%22%2C%22default-src%22%3A%22%27none%27%22%2C%22script-src%22%3A%22%27self%27%20%27unsafe-eval%27%22%2C%22connect-src%22%3A%22%27self%27%22%2C%22img-src%22%3A%22%27self%27%22%2C%22media-src%22%3A%22%27self%27%22%7D%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%7D%2C%22APP%22%3A%7B%22name%22%3A%22ember-riak-explorer%22%2C%22version%22%3A%220.0.0+6c437a08%22%7D%2C%22contentSecurityPolicyHeader%22%3A%22Content-Security-Policy-Report-Only%22%2C%22exportApplicationGlobal%22%3Atrue%7D" />
<meta name="ember-riak-explorer/config/environment" content="%7B%22modulePrefix%22%3A%22ember-riak-explorer%22%2C%22podModulePrefix%22%3A%22ember-riak-explorer/pods%22%2C%22environment%22%3A%22development%22%2C%22baseURL%22%3Anull%2C%22locationType%22%3A%22hash%22%2C%22pageSize%22%3A500%2C%22contentSecurityPolicy%22%3A%7B%22font-src%22%3A%22%27self%27%20data%3A%20code.ionicframework.com%22%2C%22style-src%22%3A%22%27self%27%20%27unsafe-inline%27%20code.ionicframework.com%22%2C%22default-src%22%3A%22%27none%27%22%2C%22script-src%22%3A%22%27self%27%20%27unsafe-eval%27%22%2C%22connect-src%22%3A%22%27self%27%22%2C%22img-src%22%3A%22%27self%27%22%2C%22media-src%22%3A%22%27self%27%22%7D%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%7D%2C%22APP%22%3A%7B%22name%22%3A%22ember-riak-explorer%22%2C%22version%22%3A%220.0.0+d9cd1dc3%22%7D%2C%22contentSecurityPolicyHeader%22%3A%22Content-Security-Policy-Report-Only%22%2C%22exportApplicationGlobal%22%3Atrue%7D" />
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="assets/ember-riak-explorer.css">
<link rel="stylesheet" href="assets/vendor.css">
Expand Down
2 changes: 1 addition & 1 deletion priv/ember_riak_explorer/dist/tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

<base href="/" />
<meta name="ember-riak-explorer/config/environment" content="%7B%22modulePrefix%22%3A%22ember-riak-explorer%22%2C%22podModulePrefix%22%3A%22ember-riak-explorer/pods%22%2C%22environment%22%3A%22test%22%2C%22baseURL%22%3A%22/%22%2C%22locationType%22%3A%22none%22%2C%22pageSize%22%3A500%2C%22contentSecurityPolicy%22%3A%7B%22font-src%22%3A%22%27self%27%20data%3A%20code.ionicframework.com%22%2C%22style-src%22%3A%22%27self%27%20%27unsafe-inline%27%20code.ionicframework.com%22%2C%22default-src%22%3A%22%27none%27%22%2C%22script-src%22%3A%22%27self%27%22%2C%22connect-src%22%3A%22%27self%27%22%2C%22img-src%22%3A%22%27self%27%22%2C%22media-src%22%3A%22%27self%27%22%7D%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%7D%2C%22APP%22%3A%7B%22LOG_ACTIVE_GENERATION%22%3Afalse%2C%22LOG_VIEW_LOOKUPS%22%3Afalse%2C%22rootElement%22%3A%22%23ember-testing%22%2C%22name%22%3A%22ember-riak-explorer%22%2C%22version%22%3A%220.0.0+6c437a08%22%7D%2C%22contentSecurityPolicyHeader%22%3A%22Content-Security-Policy-Report-Only%22%2C%22exportApplicationGlobal%22%3Atrue%7D" />
<meta name="ember-riak-explorer/config/environment" content="%7B%22modulePrefix%22%3A%22ember-riak-explorer%22%2C%22podModulePrefix%22%3A%22ember-riak-explorer/pods%22%2C%22environment%22%3A%22test%22%2C%22baseURL%22%3A%22/%22%2C%22locationType%22%3A%22none%22%2C%22pageSize%22%3A500%2C%22contentSecurityPolicy%22%3A%7B%22font-src%22%3A%22%27self%27%20data%3A%20code.ionicframework.com%22%2C%22style-src%22%3A%22%27self%27%20%27unsafe-inline%27%20code.ionicframework.com%22%2C%22default-src%22%3A%22%27none%27%22%2C%22script-src%22%3A%22%27self%27%22%2C%22connect-src%22%3A%22%27self%27%22%2C%22img-src%22%3A%22%27self%27%22%2C%22media-src%22%3A%22%27self%27%22%7D%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%7D%2C%22APP%22%3A%7B%22LOG_ACTIVE_GENERATION%22%3Afalse%2C%22LOG_VIEW_LOOKUPS%22%3Afalse%2C%22rootElement%22%3A%22%23ember-testing%22%2C%22name%22%3A%22ember-riak-explorer%22%2C%22version%22%3A%220.0.0+d9cd1dc3%22%7D%2C%22contentSecurityPolicyHeader%22%3A%22Content-Security-Policy-Report-Only%22%2C%22exportApplicationGlobal%22%3Atrue%7D" />


<link rel="stylesheet" href="assets/vendor.css">
Expand Down

0 comments on commit 9e75ddd

Please sign in to comment.