Commit f25cb478 authored by iSergio's avatar iSergio
Browse files

Not worked with newest version of sencha

parent 47f98b60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@
template/extjs
template/resources/css
template/resources/sass/.sass-cache
template-min/
#template-min/
sdk-vars.rb

template-min/README.md

0 → 100644
+14 −0
Original line number Diff line number Diff line
Manually create extjs/ directory inside this dir.

Either copy over ExtJS directory or create symlink to it.

    $ cp -r /path/to/ext-4.0.0 template/extjs

or

    $ ln -s /path/to/ext-4.0.0 template/extjs

Then run compass to generate custom ExtJS theme:

    $ compass template/resources/sass
+1 −0

File added.

Preview size limit exceeded, changes collapsed.

+26 −0
Original line number Diff line number Diff line
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta http-equiv="X-UA-Compatible" content="chrome=1">
    <title>Sencha Examples</title>

    <script type="text/javascript" src="extjs-build/ext-all.js"></script>
    <link rel="stylesheet" type="text/css" href="extjs-build/resources/css/ext-all.css">

    <script type="text/javascript">
        function loadInlineExample(code, options, callback) {
            try {
                document.body.innerHTML = '';
                eval(code);
                callback && callback(true);
            } catch (e) {
                document.body.innerHTML = e;
                callback && callback(false, e);
            }
        }
    </script>
</head>
<body>
</body>
</html>
+38 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading