Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ build/
.project
.settings
.classpath
classes/
grails-app/assets/javascripts/appHome.all.js
src/main/webapp/
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@ node {
version = '5.10.1'
npmVersion = '3.8.3'
distBaseUrl = 'https://nodejs.org/dist'
download = true
download = false
}

processResources.dependsOn(['npmInstall', 'npm_run_bundle'])
assetCompile.dependsOn(['npmInstall', 'npm_run_bundle'])
assetCompile.dependsOn(['npmInstall', 'npm_run_bundle'])

Binary file modified devDB.mv.db
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#Tue Mar 14 13:38:37 EDT 2017

#Fri Mar 24 11:20:16 EDT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
275 changes: 228 additions & 47 deletions grails-app/assets/javascripts/app.all.js

Large diffs are not rendered by default.

98 changes: 80 additions & 18 deletions grails-app/assets/javascripts/app2.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@
/******/ __webpack_require__.p = "/assets/";

/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 186);

/******/ return __webpack_require__(__webpack_require__.s = 187);

/******/ return __webpack_require__(__webpack_require__.s = 188);

/******/ })
/************************************************************************/
/******/ ([
Expand Down Expand Up @@ -9309,7 +9313,7 @@ module.exports = focusNode;
/***/ (function(module, exports, __webpack_require__) {

"use strict";

/* WEBPACK VAR INJECTION */(function(global) {

/**
* Copyright (c) 2013-present, Facebook, Inc.
Expand All @@ -9330,19 +9334,24 @@ module.exports = focusNode;
*
* The activeElement will be null only if the document or document body is not
* yet defined.
*
* @param {?DOMDocument} doc Defaults to current document.
* @return {?DOMElement}
*/
function getActiveElement() /*?DOMElement*/{
if (typeof document === 'undefined') {
function getActiveElement(doc) /*?DOMElement*/{
doc = doc || global.document;
if (typeof doc === 'undefined') {
return null;
}
try {
return document.activeElement || document.body;
return doc.activeElement || doc.body;
} catch (e) {
return document.body;
return doc.body;
}
}

module.exports = getActiveElement;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(181)))

/***/ }),
/* 80 */
Expand Down Expand Up @@ -19513,10 +19522,10 @@ module.exports = getMarkupWrap;
*/

function getUnboundedScrollPosition(scrollable) {
if (scrollable === window) {
if (scrollable.Window && scrollable instanceof scrollable.Window) {
return {
x: window.pageXOffset || document.documentElement.scrollLeft,
y: window.pageYOffset || document.documentElement.scrollTop
x: scrollable.pageXOffset || scrollable.document.documentElement.scrollLeft,
y: scrollable.pageYOffset || scrollable.document.documentElement.scrollTop
};
}
return {
Expand Down Expand Up @@ -19632,7 +19641,9 @@ module.exports = hyphenateStyleName;
* @return {boolean} Whether or not the object is a DOM node.
*/
function isNode(object) {
return !!(object && (typeof Node === 'function' ? object instanceof Node : typeof object === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string'));
var doc = object ? object.ownerDocument || object : document;
var defaultView = doc.defaultView || window;
return !!(object && (typeof defaultView.Node === 'function' ? object instanceof defaultView.Node : typeof object === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string'));
}

module.exports = isNode;
Expand Down Expand Up @@ -21882,8 +21893,40 @@ module.exports = __webpack_require__(21);


/***/ }),
/* 181 */,
/* 182 */
/* 181 */
/***/ (function(module, exports) {

var g;

// This works in non-strict mode
g = (function() {
return this;
})();

try {
// This works if eval is allowed (see CSP)
g = g || Function("return this")() || (1,eval)("this");
} catch(e) {
// This works if the window reference is available
if(typeof window === "object")
g = window;
}

// g can still be undefined, but nothing to do about it...
// We return undefined, instead of nothing here, so it's
// easier to handle this case. if(!global) { ...}

module.exports = g;


/***/ }),
/* 182 */,

/* 183 */

/* 183 */,
/* 184 */

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

"use strict";
Expand Down Expand Up @@ -22051,9 +22094,8 @@ var LoginForm = function (_React$Component2) {

}).then(function (response) {
if (response.ok) {
//this.setState({message: " "});
_this3.setState({
successMessage: _this3.state.name + ", you successfully signed up!",
message: _this3.state.name + ", you successfully signed up!",
isLocked: true
});
} else {
Expand Down Expand Up @@ -22094,7 +22136,7 @@ var LoginForm = function (_React$Component2) {
'Sign Up'
),
_react2.default.createElement('br', null),
_react2.default.createElement('input', { className: 'formInput', type: 'text', placeholder: 'Enter Name', disabled: this.state.isLocked, value: this.state.name, onChange: this.handleNameChange }),
_react2.default.createElement('input', { className: 'formInput', type: 'text', placeholder: 'Enter ', disabled: this.state.isLocked, value: this.state.name, onChange: this.handleNameChange }),
_react2.default.createElement('br', null),
_react2.default.createElement('input', { className: 'formInput', type: 'text', placeholder: 'Enter Username', disabled: this.state.isLocked, value: this.state.username, onChange: this.handleUsernameChange }),
_react2.default.createElement('br', null),
Expand All @@ -22108,6 +22150,15 @@ var LoginForm = function (_React$Component2) {
_react2.default.createElement('br', null)
),
_react2.default.createElement('input', { id: 'loginButton', type: 'submit', value: 'Create Account' }),
_react2.default.createElement(
'btn',
null,
_react2.default.createElement(
'a',
{ href: '/profile', disabled: this.state.isLocked },
'View My Resumes'
)
),
_react2.default.createElement('br', null)
)
);
Expand All @@ -22121,16 +22172,27 @@ _reactDom2.default.render(_react2.default.createElement(MenuLogin, { icon: 'http
_reactDom2.default.render(_react2.default.createElement(LoginForm, null), document.getElementById('log-in'));

/***/ }),
/* 183 */,

/* 184 */,
/* 185 */,
/* 186 */
/* 186 */,
/* 187 */

/* 185 */,
/* 186 */,
/* 187 */,
/* 188 */

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

"use strict";


var _login = __webpack_require__(182);

var _login = __webpack_require__(183);

var _login = __webpack_require__(184);


var _login2 = _interopRequireDefault(_login);

Expand Down
Loading