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
| <script type="text/javascript" src="../swfupload/swfupload.js"></script> | |
| <script type="text/javascript" src="js/swfupload.queue.js"></script> | |
| <script type="text/javascript" src="js/fileprogress.js"></script> | |
| <script type="text/javascript" src="js/handlers.js"></script> | |
| <script type="text/javascript"> | |
| var swfu; | |
| window.onload = function() { | |
| var settings = { | |
| flash_url : "../swfupload/swfupload_f9.swf", |
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
| [core] | |
| repositoryformatversion = 0 | |
| filemode = true | |
| bare = false | |
| logallrefupdates = true | |
| ignorecase = true | |
| [remote "origin"] | |
| url = git@github.com:onitunes/photobooth.git | |
| fetch = +refs/heads/*:refs/remotes/origin/* | |
| push = refs/*:refs/* |
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_view :main_split, :direction => :horizontal do %> | |
| <% scroll_view :folder_source_list_scroller, :can_collapse => false ,:min_thickness => 180 do %> | |
| <%= source_list_view :folder_source_list, :view => 'OI.FolderSourceView', :height => 693, :bind => { :content => 'OI.foldersController.arrangedObjects', :selection => 'OI.foldersController.selection' } %> | |
| <% end %> | |
| <%= split_divider_view :main_split_divider, :width => 5 %> | |
| <% split_view :main, :can_collapse => false, :direction => :horizontal, :min_thickness => 180 do %> |
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
| body { | |
| position: absolute ; | |
| left: 0px; | |
| right: 0px; | |
| top: 0px; | |
| bottom: 0px; | |
| padding: 0px; | |
| margin: 0px; | |
| overflow: hidden ; | |
| } |
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
| #left { | |
| position: absolute; | |
| top: 0px; | |
| width: 200px; | |
| bottom: 0px; | |
| left: 0px; | |
| padding: 0px; | |
| margin: 0px; | |
| border: none; | |
| } |
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
| <%= slider_view :slider, :minimum => 1, :maximum => 4, :step => 1, :bind => {:value => 'HelloWorld.appController.sliderValue' } %> | |
| from | |
| <% content_for('body') do %> | |
| <div class="sc-welcome"> | |
| <img class="logo" src="<%= static_url('images/sproutcore-logo') %>" /> | |
| <div class="message"> | |
| <%= checkbox_view :clock_checkbox, :label => "Show Clock", :bind => { :value => 'HelloWorld.appController.isClockShowing' } %> |
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
| { | |
| interval: 20, // time between animation frames | |
| duration: 400, // length of animation | |
| onComplete: function(){}, | |
| onStep: function(){}, | |
| transition: Animator.tx.easeInOut | |
| } |
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
| readAttribute: function(key) { | |
| if (!this._cachedAttributes) this._cachedAttributes = {} ; | |
| var ret = this._cachedAttributes[key] ; | |
| if (ret === undefined) { | |
| var attr = this._attributes ; | |
| ret = (attr) ? attr[key] : undefined ; | |
| if (ret !== undefined) { | |
| var recordType = this._getRecordType(key+'Type') ; | |
| ret = this._propertyFromAttribute(ret, recordType) ; | |
| } |
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
| emptyElement: [ | |
| '<div class="sc-inline-text-field-view">', | |
| '<div class="sizer"></div>', | |
| '<textarea class="inner-field" wrap="virtual"></textarea>', | |
| '</div>' | |
| ].join(''), |
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
| - (NSUInteger) countOfArrangedTreeNodes; | |
| { | |
| return [_treeNodes count]; | |
| } | |
| - (SCTreeNode *) objectInArrangedTreeNodesAtIndex: (NSUInteger) index | |
| { | |
| return [_treeNodes objectAtIndex: index]; | |
| } | |