This file contains hidden or 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._pendingFetch instanceof Ember.Map | |
| true | |
| > this._pendingFetch.keys.list | |
| [(subclass of DS.Model), "type"] | |
| > this._pendingFetch.values | |
| Object {ember249: Array[1], st269: "value"} | |
| > this._pendingFetch.forEach(function(k, v) { console.debug(k, v); }) | |
| [Object, _super: function, nextObject: function, firstObject: undefined, lastObject: undefined, contains: function…] (subclass of DS.Model) | |
| value type | |
| undefined |
This file contains hidden or 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
| file added adapters/.unison.session.js.0fdafcf26b5d53a778ebfb5b50061b12.unison.tmp | |
| file changed adapters/.unison.session.js.0fdafcf26b5d53a778ebfb5b50061b12.unison.tmp | |
| file changed adapters/.unison.session.js.0fdafcf26b5d53a778ebfb5b50061b12.unison.tmp | |
| Build successful - 7217ms. | |
| Slowest Trees | Total | |
| -------------------------------+---------------- | |
| TreeMerger (stylesAndVendor) | 1701ms | |
| StaticCompiler | 1646ms |
This file contains hidden or 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
Show hidden characters
| { | |
| "auto_complete_commit_on_tab": true, | |
| "color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme", | |
| "default_line_ending": "unix", | |
| "ensure_newline_at_eof_on_save": true, | |
| "folder_exclude_patterns": | |
| [ | |
| ".svn", | |
| ".git", | |
| ".hg", |
This file contains hidden or 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
| popup-link value="Click Me" placement="bottom" | |
| | Hey there. | |
| a click="hide target='popover'" href="#" Close |
This file contains hidden or 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 // Static reference to slice | |
| sliceDeferred = [].slice; | |
| /* $.when that waits for everything to return before failing */ | |
| function whenAll( firstParam ) { | |
| var args = sliceDeferred.call( arguments, 0 ), | |
| i = 0, | |
| length = args.length, | |
| pValues = new Array( length ), | |
| count = length, |
This file contains hidden or 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
| > _.split([1, 2, 3, 4], function(item) { return [item, item*2]; }) | |
| [1, 2, 2, 4, 3, 6, 4, 8] |
This file contains hidden or 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
| { | |
| _ajax: function(path, method, data, retry) { | |
| var self = this; | |
| var response = self._session.pipe(function(session) { | |
| return $.ajax({ | |
| type: method || "GET", | |
| url: SalesForceSettings.proxyUrl, | |
| cache: false, | |
| processData: false, |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Template Test</title> | |
| <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
| <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0.beta2/handlebars.min.js"></script> | |
| <script type="text/javascript"> | |
| $(function() { | |
| $("script[type='text/x-handlebars-template']").each(function(i, el) { | |
| var source = $(el).data("source"); |
This file contains hidden or 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
| class Baton : IBaton { | |
| private static Wiimote wiimote; | |
| public Baton() { | |
| if (wiimote == null) { | |
| wiimote = new Wiimote(); | |
| wiimote.Connect(); | |
| wiimote.SetReportType(InputReport.IRAccel, true); | |
| wiimote.SetLEDs(false, false, false, false); | |
| } |
NewerOlder