Changeset 2167


Ignore:
Timestamp:
04/16/12 07:10:24 (13 months ago)
Author:
pablo
Message:

Branch for v6 dev work

Location:
branches/jw6
Files:
30 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • branches/jw6/.actionScriptProperties

    r2166 r2167  
    3434  <buildCSSFiles/> 
    3535</actionScriptProperties> 
     36 
  • branches/jw6/.externalToolBuilders/Ant Builder.launch

    r2166 r2167  
    33<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${workspace}"/> 
    44<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 
     5<stringAttribute key="org.eclipse.ui.externaltools.ATTR_BUILD_SCOPE" value="${working_set:&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#10;&lt;launchConfigurationWorkingSet factoryID=&quot;org.eclipse.ui.internal.WorkingSetFactory&quot; id=&quot;1334571635362_21&quot; label=&quot;workingSet&quot; name=&quot;workingSet&quot;&gt;&#10;&lt;item factoryID=&quot;org.eclipse.ui.internal.model.ResourceFactory&quot; path=&quot;/jw6/build&quot; type=&quot;2&quot;/&gt;&#10;&lt;item factoryID=&quot;org.eclipse.ui.internal.model.ResourceFactory&quot; path=&quot;/jw6/src&quot; type=&quot;2&quot;/&gt;&#10;&lt;/launchConfigurationWorkingSet&gt;}"/> 
    56<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="/usr/bin/ant"/> 
    67<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,auto,clean"/> 
    78<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> 
    8 <stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/HTML5Refactor}/build/"/> 
     9<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${project_loc}/build/"/> 
    910</launchConfiguration> 
  • branches/jw6/.project

    r2166 r2167  
    1 <?xml version="1.0" encoding="UTF-8"?> 
     1<?xml version="1.0" encoding="UTF-8" standalone="no"?> 
    22<projectDescription> 
    3         <name>HTML5Refactor</name> 
    4         <comment></comment> 
     3        <name>jw6</name> 
     4        <comment/> 
    55        <projects> 
    66        </projects> 
     
    3030        </natures> 
    3131</projectDescription> 
     32 
  • branches/jw6/bin-debug/jwplayer.js

    r2166 r2167  
    111111        }; 
    112112         
     113        utils.cssStyle = function(selector, styles) { 
     114                if (!_styleSheet) { 
     115                        _styleSheet = document.createElement("style"); 
     116                        _styleSheet.type = "text/css"; 
     117                        document.getElementsByTagName('head')[0].appendChild(_styleSheet); 
     118                } 
     119 
     120                if (_rules[selector]) { 
     121                        for (var s in styles) { 
     122                                _rules[selector][s] = styles[s]; 
     123                        } 
     124                        styles = _rules[selector]; 
     125                } 
     126                 
     127                _rules[selector] = styles; 
     128        } 
     129         
    113130        function _updateStylesheet() { 
    114131                if (_styleSheet) { 
    115132                        var ruleText = ""; 
    116133                        for (var rule in _rules) { 
    117                                 ruleText += rule + "{" + _rules[rule].cssText + "}\n"; 
     134                                var styles = _rules[rule]; 
     135                                ruleText += rule + "{"; 
     136                                for (var style in styles) { 
     137                                        ruleText += style + ": " + styles[style] + ";\n"; 
     138                                } 
     139                                ruleText += "}\n"; 
    118140                        } 
    119141                        _styleSheet.innerHTML = ruleText; 
     
    960982                 
    961983                var _setBuffer = this.setBuffer = function(pct) { 
     984                        pct = Math.min(Math.max(0, pct), 1); 
    962985                        _elements['timeSliderBuffer'].style.width = 100 * pct + "%"; 
    963986                } 
     
    10791102                //OTransition: 'left .5s linear 0s, opacity .5s ease .5s' -- this produces console errors in Opera 
    10801103            });              
    1081             _css(CB_CLASS + ' .timeSliderProgress', { 
     1104            _css(CB_CLASS + ' .timeSliderProgress,' + CB_CLASS + ' .timeSliderBuffer', { 
    10821105                webkitTransition: 'width .5s linear', 
    10831106                MozTransition: 'width .5s linear', 
Note: See TracChangeset for help on using the changeset viewer.