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 (app) { | |
'use strict'; | |
applitude.register('mvc', { | |
Models: {} | |
}); | |
applitude.register('mixinTest', { | |
mixins: 'mvc' | |
}); |
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 (app) { | |
describe('i18n', function () { | |
it('should exist', function () { | |
waitsFor(function () { | |
return app.i18n && app.i18n.whenLoaded.isResolved(); | |
}); | |
runs(function () { | |
expect(applitude.i18n).toBeDefined(); | |
}); | |
}); |
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 (app, $) { | |
'use strict'; | |
var i18n = $.i18n, | |
whenTranslationsLoaded = app.deferred(); | |
i18n.init({ | |
resGetPath: app.environment.localepath + '/__lng__/__ns__.json', | |
fallbackLng: 'en-US', | |
useLocalStorage: false, |
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
// jQuery syntax: (outies) | |
(function () { | |
// your code here | |
})(); | |
// Crockford syntax: (innies) | |
(function () { | |
// your code here | |
}()); |
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
/** | |
* cuid.js | |
* Collision-resistant UID generator for browsers and node. | |
* Sequential for fast db lookups and recency sorting. | |
* Safe for element IDs and server-side lookups. | |
* | |
* Extracted from CLCTR | |
* | |
* Copyright (c) Eric Elliott 2012 | |
* MIT License |
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
{ | |
"globals": { | |
"jasmine": true, | |
"spyOn": true, | |
"it": true, | |
"console": true, | |
"describe": true, | |
"expect": true, | |
"beforeEach": true, | |
"waits": true, |
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 extend(obj) { | |
var args = [].slice.call(arguments, 1); | |
args.forEach(function (source) { | |
var prop; | |
for (prop in source) { | |
if (source.hasOwnProperty(prop)) { | |
obj[prop] = source[prop]; | |
} | |
} | |
}); |
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
// Shim support for CommonJS variables. This greatly reduces logic needed. | |
// Note: all of these variables are supposed to be global, anyway. | |
var global = global || this, module = module || undefined; | |
(function (app) { | |
'use strict'; | |
// replace the namespace string with the name of your library | |
var namespace = 'librarymodule', |
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
var myPrototype = { | |
methodA: function methodA() {}, | |
methodB: function methodB() {}, | |
methodC: function methodC() {} | |
}; | |
createFoo = function createFoo() { | |
return (Object.create(myPrototype)); | |
}; |
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
// Create a factory object that can be used to swap out the prototype used | |
// to instantiate new instances. | |
var factory = {}; | |
factory.proto = {foo: 'bar'}; | |
factory.create = function () { return Object.create(this.proto); }; | |
var t1 = factory.create(); |