The following debugging information was generated by Atom Beautify
on Mon May 29 2017 13:42:26 GMT+0930 (ACST)
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"word": "crews" | |
}, | |
{ | |
"word": "money" | |
}, | |
{ | |
"word": "famed" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#redactor_modal_overlay, #redactor_modal, .redactor_dropdown { | |
z-index: 9999 !important; | |
} | |
.redactor_editor.redactor_editor_wym h1, .redactor_editor.redactor_editor_wym h2, .redactor_editor.redactor_editor_wym h3, .redactor_editor.redactor_editor_wym h4, .redactor_editor.redactor_editor_wym h5, .redactor_editor.redactor_editor_wym p, .redactor_editor.redactor_editor_wym blockquote, .redactor_editor.redactor_editor_wym pre { | |
position: relative; | |
} | |
.redactor_editor.redactor_editor_wym h1:before, .redactor_editor.redactor_editor_wym h2:before, .redactor_editor.redactor_editor_wym h3:before, .redactor_editor.redactor_editor_wym h4:before, .redactor_editor.redactor_editor_wym h5:before, .redactor_editor.redactor_editor_wym p:before, .redactor_editor.redactor_editor_wym blockquote:before, .redactor_editor.redactor_editor_wym pre:before { | |
position: absolute; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#redactor_modal_overlay, #redactor_modal, .redactor_dropdown{ | |
z-index: 9999 !important; // fix for migx redactor fields | |
} | |
.redactor_editor.redactor_editor_wym{ | |
h1,h2,h3,h4,h5,p,blockquote,pre{ | |
position: relative; | |
&::before{ | |
position: absolute; | |
top: 1px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
grunt.registerTask('watch', [ 'watch']); | |
grunt.registerTask('build', [ 'coffee','uglify','sass_directory_import', 'sass', 'notify:build']); | |
grunt.registerTask('deploy','Depolyment build...', function(){ | |
//remove console logs | |
var uglify = grunt.config.get('uglify'); | |
for(var attributename in uglify){ | |
uglify[attributename].options.compress = {drop_console: true}; |