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
require('./AbstractTask'); | |
Ext.define('tasks.GetSenchaProjectName', { | |
extend : 'tasks.AbstractTask', | |
singleton : true, | |
run : function() { | |
var me = this, | |
file = 'html5/app.json', | |
jsonData; |
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
#!/usr/local/bin/node | |
var die = function(msg) { | |
msg && console.log(msg); | |
process.exit(code=1); | |
}; | |
var sys = require('sys'), | |
fs = require('fs'), |
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
#!/usr/local/bin/node | |
var sys = require('sys'), | |
fs = require('fs'), | |
console = require('console'), | |
exec = require('child_process').exec; | |
var target = "testing", | |
cdvRoot = 'cdv', | |
cdvSrc = cdvRoot + '/www.orig', |
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
(function () { | |
with(this[2]) { | |
with(this[1]) { | |
with(this[0]) { | |
return function (event) { | |
showordermenubycategory(220, 'Rice/Noodles') | |
}; | |
} | |
} | |
} |
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
Ext.define('AW.view.Skybox', { | |
extend : 'Ext.Container', | |
xtype : 'skybox', | |
config : { | |
height : 153, | |
layout : 'hbox', | |
cls : 'skybox', | |
stories : undefined, | |
items : [ |
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
jay:html5 jgarcia$ sencha app build testing | |
Sencha Cmd v3.1.2.342 | |
[INF] | |
[INF] init-plugin: | |
[INF] | |
[INF] cmd-root-plugin.init-properties: | |
[INF] | |
[INF] init-properties: | |
[INF] | |
[INF] init-sencha-command: |
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
/* | |
This file is generated and updated by Sencha Cmd. You can edit this file as | |
needed for your application, but these edits will have to be merged by | |
Sencha Cmd when it performs code generation tasks such as generating new | |
models, controllers or views and when running "sencha app upgrade". | |
Ideally changes to this file would be limited and most work would be done | |
in other places (such as Controllers). If Sencha Cmd cannot merge your | |
changes and its generated code, it will produce a "merge conflict" that you | |
will need to resolve manually. |
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
/** CSS | |
.flexbox { | |
display : -webkit-box; | |
height : 47px; | |
background-color : rgb(231, 231, 231); | |
-webkit-box-shadow : inset 0 5px 5px #888; | |
} | |
.opaque-list-item { |
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
/** CSS | |
.flexbox { | |
display : -webkit-box; | |
height : 47px; | |
background-color : rgb(231, 231, 231); | |
-webkit-box-shadow : inset 0 5px 5px #888; | |
} | |
.opaque-list-item { |
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
/** | |
* This method is used by an override to call the superclass method but bypass any | |
* overridden method. This is often done to "patch" a method that contains a bug | |
* but for whatever reason cannot be fixed directly. | |
* | |
* Consider: | |
* | |
* Ext.define('Ext.some.Class', { | |
* method: function () { | |
* console.log('Good'); |