Replacing "container" class with "application"
This commit is contained in:
parent
55ee380817
commit
445cec7c7f
@ -1,4 +1,4 @@
|
|||||||
<div class="container">
|
<div class="application">
|
||||||
<form id="regexp-form">
|
<form id="regexp-form">
|
||||||
<textarea id="regexp-input" autofocus="autofocus" placeholder="Enter JavaScript-style regular expression to display"></textarea>
|
<textarea id="regexp-input" autofocus="autofocus" placeholder="Enter JavaScript-style regular expression to display"></textarea>
|
||||||
<button type="submit">Display</button>
|
<button type="submit">Display</button>
|
||||||
|
@ -4,7 +4,7 @@ import Parser from './parser/javascript.js';
|
|||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
if (document.body.querySelector('#content .container')) {
|
if (document.body.querySelector('#content .application')) {
|
||||||
var regexper = new Regexper(document.body);
|
var regexper = new Regexper(document.body);
|
||||||
|
|
||||||
regexper.bindListeners();
|
regexper.bindListeners();
|
||||||
|
@ -123,7 +123,7 @@ header {
|
|||||||
#content {
|
#content {
|
||||||
padding: rhythm(1);
|
padding: rhythm(1);
|
||||||
|
|
||||||
.container {
|
.application {
|
||||||
position: relative;
|
position: relative;
|
||||||
@include clearfix;
|
@include clearfix;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user