Began adding console (currently jQuery popup)
parent
16b0ece58a
commit
32c010fd07
|
@ -4,6 +4,8 @@
|
|||
<head>
|
||||
<title>ease.js</title>
|
||||
<link type="text/css" rel="stylesheet" href="style.css" />
|
||||
<link type="text/css" rel="stylesheet"
|
||||
href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/base/jquery-ui.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
|
@ -45,6 +47,9 @@
|
|||
<script type="text/javascript"
|
||||
src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js">
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js">
|
||||
</script>
|
||||
<script type="text/javascript" src="scripts/ease-full.js"></script>
|
||||
<script type="text/javascript" src="scripts/ui.js"></script>
|
||||
</body>
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
.hide()
|
||||
.append( $( '<h2>' ).text( 'Try ease.js' ) )
|
||||
.append( $txt = $( '<textarea>' ).text (
|
||||
"Test"
|
||||
"console.log( Class( 'Foo', {} ) );"
|
||||
) )
|
||||
.append( $( '<div>' )
|
||||
.attr( 'id', 'trybtns' )
|
||||
|
@ -76,13 +76,54 @@
|
|||
.addClass( 'btn med green' )
|
||||
.click( function()
|
||||
{
|
||||
var Class = easejs.Class;
|
||||
eval( $txt.val() );
|
||||
runScript( $txt.val() );
|
||||
} )
|
||||
)
|
||||
)
|
||||
.prependTo( '#content' );
|
||||
} )();
|
||||
}
|
||||
|
||||
|
||||
function runScript( script )
|
||||
{
|
||||
var Class = easejs.Class,
|
||||
|
||||
$console = $( '<textarea>' )
|
||||
.attr( {
|
||||
id: 'try-console',
|
||||
readonly: 'readonly'
|
||||
} ),
|
||||
|
||||
$dialog = $( '<div>' )
|
||||
.append( $console )
|
||||
.dialog( {
|
||||
title: 'Console',
|
||||
modal: true,
|
||||
width: '800px',
|
||||
height: 'auto'
|
||||
} ),
|
||||
|
||||
console = {
|
||||
log: function( text )
|
||||
{
|
||||
$console.text(
|
||||
$console.text() + "\n" + text
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
( function( console )
|
||||
{
|
||||
try
|
||||
{
|
||||
eval( script );
|
||||
}
|
||||
catch ( e )
|
||||
{
|
||||
console.log( e );
|
||||
}
|
||||
} )( console );
|
||||
}
|
||||
} )();
|
||||
|
||||
|
|
Loading…
Reference in New Issue