2014-12-07 14:12:50 +01:00
|
|
|
requirejs.config({
|
|
|
|
// baseUrl: '/',
|
|
|
|
paths: {
|
|
|
|
lodash: 'http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash',
|
|
|
|
jquery: 'http://code.jquery.com/jquery-1.11.0.min',
|
|
|
|
firebase: 'https://cdn.firebase.com/js/client/2.0.5/firebase',
|
|
|
|
react: 'http://fb.me/react-with-addons-0.12.1',
|
|
|
|
//ace: '../ace-builds-1.1.8/src-min/ace',
|
|
|
|
fiddle: './fiddle'
|
|
|
|
//'react/addons': 'http://fb.me/react-with-addons-0.12.1'
|
|
|
|
},
|
|
|
|
shim: {
|
2014-12-08 11:45:32 +01:00
|
|
|
lodash: {exports: '_'},
|
|
|
|
firebase: {exports: 'Firebase'},
|
2014-12-07 14:12:50 +01:00
|
|
|
//ace: { exports: 'ace' },
|
2014-12-08 11:45:32 +01:00
|
|
|
jquery: {exports: '$'},
|
|
|
|
react: {exports: 'React'}
|
2014-12-07 14:12:50 +01:00
|
|
|
},
|
|
|
|
map: {
|
|
|
|
'*': {
|
|
|
|
'react/addons': 'react'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
requirejs(['jquery', 'react', 'fiddle'], function ($, React, fiddle) {
|
|
|
|
'use strict';
|
|
|
|
window.fiddle = React.render(fiddle(), document.getElementById('container'));
|
2014-12-08 11:45:32 +01:00
|
|
|
$(function () {
|
|
|
|
$(window).resize(calcSize);
|
|
|
|
calcSize();
|
|
|
|
});
|
|
|
|
|
|
|
|
function calcSize() {
|
|
|
|
var contentHeight = $(document).height() - 48;
|
|
|
|
//$('#container').height(contentHeight).width($(document).width());
|
|
|
|
//$('.code-area').each(function (i) {
|
|
|
|
// var h = (contentHeight / 2) - 10;
|
|
|
|
// var w = ($(document).width() / 2) - 10;
|
|
|
|
// $(this).height(h).width(w);
|
|
|
|
//});
|
|
|
|
|
|
|
|
|
|
|
|
var h = (contentHeight / 2) - 10;
|
|
|
|
var w = ($(document).width() / 2) - 10;
|
|
|
|
//var size = getWindowSize();
|
|
|
|
//$('#editor-rt').css({
|
|
|
|
// top: 50, left: 0, bottom: h, right: w, position: 'absolute'
|
|
|
|
//});
|
|
|
|
//$('#editor-code').css({
|
|
|
|
// top: 50, left: w, bottom: h, right: 0, position: 'absolute'
|
|
|
|
//});
|
|
|
|
//$('#editor-generated').css({
|
|
|
|
// top: 50 + h, left: 0, bottom: 0, right: w, position: 'absolute'
|
|
|
|
//});
|
|
|
|
//$('#result-area').css({
|
|
|
|
// top: 50 + h, left: w, bottom: 0, right: 0, position: 'absolute'
|
|
|
|
//});
|
|
|
|
|
|
|
|
//$('.code-area').each(function (i, k) {
|
|
|
|
// //var h = (contentHeight / 2) - 10;
|
|
|
|
// //var w = ($(document).width() / 2) - 10;
|
|
|
|
// //$(this).height(h).width(w);
|
|
|
|
// $(this).css({
|
|
|
|
// top: 50 + h, left: w, bottom: 0, right: 0, position: 'absolute'
|
|
|
|
// });
|
|
|
|
//});
|
|
|
|
|
|
|
|
$('.large-text-area').each(function (i, k) {
|
|
|
|
//var h = (contentHeight / 2) - 10;
|
|
|
|
//var w = ($(document).width() / 2) - 10;
|
|
|
|
var $this = $(this);
|
|
|
|
//$this.parent().width();
|
|
|
|
//$this.parent().width();
|
|
|
|
console.log('' + $this.parent().height() + ',' + $this.parent().width() );
|
|
|
|
//$(this).css({);
|
|
|
|
|
|
|
|
$this.height($this.parent().height() - 2).width($this.parent().width() - 2);
|
|
|
|
//$(this).css({
|
|
|
|
// top: 50 + h, left: w, bottom: 0, right: 0, position: 'absolute'
|
|
|
|
//});
|
|
|
|
});
|
|
|
|
//.large-text-area
|
|
|
|
}
|
2014-12-07 14:12:50 +01:00
|
|
|
});
|
|
|
|
|