From 409361a7f7653ddb09f9a7463e9ea4ce47caa960 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Tue, 3 Jul 2012 14:26:19 -0700 Subject: Removing the youtube hack now that we have the proper fix from montage Removing the saved instance of the component when opening a file containing the youtube component. Montage made the fix where the instance is now serialized property. Signed-off-by: Valerio Virgillito --- .../montage-google/youtube-channel.reel/youtube-channel.js | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'node_modules') diff --git a/node_modules/montage-google/youtube-channel.reel/youtube-channel.js b/node_modules/montage-google/youtube-channel.reel/youtube-channel.js index f06216e1..53019054 100644 --- a/node_modules/montage-google/youtube-channel.reel/youtube-channel.js +++ b/node_modules/montage-google/youtube-channel.reel/youtube-channel.js @@ -10,9 +10,6 @@ var Montage = require("montage").Montage, var YoutubeChannel = exports.YoutubeChannel = Montage.create(Component, { - _savedReference: { - value: null - }, _userRe: { value: /youtube.com\/(user\/)?([a-z0-9]+)/i @@ -118,7 +115,7 @@ var YoutubeChannel = exports.YoutubeChannel = Montage.create(Component, { this._positionPopup(); - this._savedReference = this.element; + } }, @@ -127,12 +124,7 @@ var YoutubeChannel = exports.YoutubeChannel = Montage.create(Component, { var self = this; if (this._script) { - if(this.element.childNodes.length < 1) { - this._savedReference.appendChild(this._script); - } else { - this.element.appendChild(this._script); - } - + this.element.appendChild(this._script); this._script = null; } -- cgit v1.2.3 From 648ee61ae84216d0236e0dbc211addc13b2cfa3a Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 6 Jul 2012 11:52:06 -0700 Subject: Expand tabs --- .../picasa-carousel.reel/image.reel/image.html | 6 +-- .../picasa-carousel.reel/picasa-carousel.css | 2 +- .../montage/core/converter/bytes-converter.js | 2 +- .../montage/core/converter/currency-converter.js | 2 +- .../montage/core/converter/date-converter.js | 18 ++++---- .../montage/core/converter/lower-case-converter.js | 2 +- .../core/converter/new-line-to-br-converter.js | 2 +- .../montage/core/converter/number-converter.js | 2 +- .../montage/core/converter/trim-converter.js | 2 +- node_modules/montage/core/exception.js | 2 +- node_modules/montage/core/extras/string.js | 2 +- node_modules/montage/core/gate.js | 2 +- node_modules/montage/core/geometry/cubic-bezier.js | 2 +- node_modules/montage/core/geometry/point.js | 2 +- node_modules/montage/core/logger.js | 12 +++--- node_modules/montage/core/state-chart.js | 2 +- node_modules/montage/core/uuid.js | 2 +- node_modules/montage/data/control-listener.js | 2 +- .../montage/data/ldap-access/ldap-object-id.js | 2 +- .../montage/data/nosql-access/nosql-object-id.js | 2 +- .../montage/data/rest-access/rest-object-id.js | 2 +- .../montage/data/sql-access/sql-object-id.js | 2 +- .../ui/bluemoon/button-group.reel/button-group.js | 2 +- .../montage/ui/bluemoon/button.reel/button.js | 2 +- .../montage/ui/bluemoon/checkbox.reel/checkbox.css | 2 +- .../montage/ui/bluemoon/checkbox.reel/checkbox.js | 2 +- .../montage/ui/bluemoon/progress.reel/progress.css | 38 ++++++++-------- .../ui/bluemoon/progress.reel/progress.html | 6 +-- .../montage/ui/bluemoon/progress.reel/progress.js | 2 +- node_modules/montage/ui/bluemoon/tabs.reel/tabs.js | 2 +- .../montage/ui/bluemoon/textarea.reel/textarea.js | 2 +- .../ui/bluemoon/textfield.reel/textfield.js | 2 +- .../montage/ui/bluemoon/toggle.reel/toggle.js | 2 +- .../ui/component-group.reel/component-group.js | 2 +- node_modules/montage/ui/component.js | 2 +- node_modules/montage/ui/composer/composer.js | 2 +- node_modules/montage/ui/composer/press-composer.js | 2 +- node_modules/montage/ui/composer/swipe-composer.js | 2 +- .../montage/ui/condition.reel/condition.js | 2 +- .../montage/ui/controller/media-controller.js | 2 +- .../montage/ui/dynamic-text.reel/dynamic-text.js | 2 +- node_modules/montage/ui/editable-text.js | 2 +- node_modules/montage/ui/list.reel/list.js | 2 +- .../montage/ui/loading-panel.reel/loading-panel.js | 6 +-- node_modules/montage/ui/loading.reel/loading.js | 2 +- .../montage/ui/native/anchor.reel/anchor.js | 2 +- .../ui/native/input-date.reel/input-date.js | 20 ++++----- .../ui/native/input-number.reel/input-number.js | 18 ++++---- node_modules/montage/ui/popup/popup.reel/popup.css | 12 +++--- .../montage/ui/progress.reel/progress.html | 6 +-- .../montage/ui/repetition.reel/repetition.js | 2 +- .../rich-text-linkpopup.js | 2 +- .../rich-text-resizer.reel/rich-text-resizer.js | 2 +- .../rich-text-editor.reel/rich-text-editor-base.js | 2 +- .../rich-text-editor.reel/rich-text-sanitizer.js | 2 +- node_modules/montage/ui/slot.reel/slot.js | 2 +- .../montage/ui/substitution.reel/substitution.js | 2 +- .../montage/ui/video-player.reel/video-player.css | 50 +++++++++++----------- .../montage/ui/video-player.reel/video-player.js | 2 +- 59 files changed, 144 insertions(+), 144 deletions(-) (limited to 'node_modules') diff --git a/node_modules/montage-google/picasa-carousel.reel/image.reel/image.html b/node_modules/montage-google/picasa-carousel.reel/image.reel/image.html index 56fd0d1c..7e25b00f 100644 --- a/node_modules/montage-google/picasa-carousel.reel/image.reel/image.html +++ b/node_modules/montage-google/picasa-carousel.reel/image.reel/image.html @@ -51,9 +51,9 @@ POSSIBILITY OF SUCH DAMAGE. width: 206px; height: 140px; border: 2px solid #888; - background-repeat: no-repeat; - background-position: center center; - background-size: cover; + background-repeat: no-repeat; + background-position: center center; + background-size: cover; opacity: 0.999; } diff --git a/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.css b/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.css index 2b6df08d..d158fe4b 100755 --- a/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.css +++ b/node_modules/montage-google/picasa-carousel.reel/picasa-carousel.css @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. .montage-google-picasa-carousel { width: 100%; height: 100%; - -webkit-transform-style: preserve-3d; + -webkit-transform-style: preserve-3d; } .montage-google-picasa-carousel .flow { diff --git a/node_modules/montage/core/converter/bytes-converter.js b/node_modules/montage/core/converter/bytes-converter.js index 84511924..17a4390c 100755 --- a/node_modules/montage/core/converter/bytes-converter.js +++ b/node_modules/montage/core/converter/bytes-converter.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/converter/bytes-converter + @module montage/core/converter/bytes-converter @requires montage/core/core @requires montage/core/converter/converter @requires montage/core/converter/number-converter diff --git a/node_modules/montage/core/converter/currency-converter.js b/node_modules/montage/core/converter/currency-converter.js index ca32fe7e..712ce306 100755 --- a/node_modules/montage/core/converter/currency-converter.js +++ b/node_modules/montage/core/converter/currency-converter.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/converter/currency-converter + @module montage/core/converter/currency-converter @requires montage/core/core @requires montage/core/converter/converter @requires montage/core/converter/number-converter diff --git a/node_modules/montage/core/converter/date-converter.js b/node_modules/montage/core/converter/date-converter.js index 38ad8f96..0c0ae09a 100755 --- a/node_modules/montage/core/converter/date-converter.js +++ b/node_modules/montage/core/converter/date-converter.js @@ -36,7 +36,7 @@ POSSIBILITY OF SUCH DAMAGE. @website: http://www.datejs.com/ */ /** - @module montage/core/converter/date-converter + @module montage/core/converter/date-converter @requires montage/core/core @requires montage/core/converter/converter */ @@ -2277,14 +2277,14 @@ var Montage = require("montage").Montage, var _F = { //"M/d/yyyy": function (s) { - // var m = s.match(/^([0-2]\d|3[0-1]|\d)\/(1[0-2]|0\d|\d)\/(\d\d\d\d)/); - // if (m!=null) { - // var r = [ t.month.call(this,m[1]), t.day.call(this,m[2]), t.year.call(this,m[3]) ]; - // r = t.finishExact.call(this,r); - // return [ r, "" ]; - // } else { - // throw new Date.Parsing.Exception(s); - // } + // var m = s.match(/^([0-2]\d|3[0-1]|\d)\/(1[0-2]|0\d|\d)\/(\d\d\d\d)/); + // if (m!=null) { + // var r = [ t.month.call(this,m[1]), t.day.call(this,m[2]), t.year.call(this,m[3]) ]; + // r = t.finishExact.call(this,r); + // return [ r, "" ]; + // } else { + // throw new Date.Parsing.Exception(s); + // } //} //"M/d/yyyy": function (s) { return [ new Date(Date._parse(s)), ""]; } }; diff --git a/node_modules/montage/core/converter/lower-case-converter.js b/node_modules/montage/core/converter/lower-case-converter.js index 90e6ec55..d5478a03 100755 --- a/node_modules/montage/core/converter/lower-case-converter.js +++ b/node_modules/montage/core/converter/lower-case-converter.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/converter/lower-case-converter + @module montage/core/converter/lower-case-converter @requires montage/core/core @requires montage/core/converter/converter */ diff --git a/node_modules/montage/core/converter/new-line-to-br-converter.js b/node_modules/montage/core/converter/new-line-to-br-converter.js index e3cdaa6b..c9f511f6 100755 --- a/node_modules/montage/core/converter/new-line-to-br-converter.js +++ b/node_modules/montage/core/converter/new-line-to-br-converter.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/converter/new-line-to-br-converter + @module montage/core/converter/new-line-to-br-converter @requires montage/core/core @requires montage/core/converter/converter */ diff --git a/node_modules/montage/core/converter/number-converter.js b/node_modules/montage/core/converter/number-converter.js index 4db5606a..9a11ba97 100755 --- a/node_modules/montage/core/converter/number-converter.js +++ b/node_modules/montage/core/converter/number-converter.js @@ -46,7 +46,7 @@ POSSIBILITY OF SUCH DAMAGE. // limitations under the License. // /** - @module montage/core/converter/number-converter + @module montage/core/converter/number-converter @requires montage/core/core @requires montage/core/converter/converter */ diff --git a/node_modules/montage/core/converter/trim-converter.js b/node_modules/montage/core/converter/trim-converter.js index faabd2d7..67166e6a 100755 --- a/node_modules/montage/core/converter/trim-converter.js +++ b/node_modules/montage/core/converter/trim-converter.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/converter/trim-converter + @module montage/core/converter/trim-converter @requires montage/core/core @requires montage/core/converter/converter */ diff --git a/node_modules/montage/core/exception.js b/node_modules/montage/core/exception.js index 29c2ba3d..520f9e71 100755 --- a/node_modules/montage/core/exception.js +++ b/node_modules/montage/core/exception.js @@ -30,7 +30,7 @@ POSSIBILITY OF SUCH DAMAGE. var Montage = require("montage").Montage; var logger = require("core/logger").logger("exception"); /** - @module montage/core/exception + @module montage/core/exception @requires montage/core/core @requires montage/core/logger */ diff --git a/node_modules/montage/core/extras/string.js b/node_modules/montage/core/extras/string.js index 4a39bbd6..9ebbbaff 100755 --- a/node_modules/montage/core/extras/string.js +++ b/node_modules/montage/core/extras/string.js @@ -30,7 +30,7 @@ POSSIBILITY OF SUCH DAMAGE. /** Defines extensions to native String object. @see [String class]{@link external:String} - @module montage/core/shim/string + @module montage/core/shim/string */ /** diff --git a/node_modules/montage/core/gate.js b/node_modules/montage/core/gate.js index 55237bdb..561b0101 100755 --- a/node_modules/montage/core/gate.js +++ b/node_modules/montage/core/gate.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/gate + @module montage/core/gate @requires montage/core/core @requires montage/core/logger */ diff --git a/node_modules/montage/core/geometry/cubic-bezier.js b/node_modules/montage/core/geometry/cubic-bezier.js index 03fc4695..40329331 100755 --- a/node_modules/montage/core/geometry/cubic-bezier.js +++ b/node_modules/montage/core/geometry/cubic-bezier.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/geometry/cubic-bezier + @module montage/core/geometry/cubic-bezier @requires montage/core/core @requires montage/core/geometry/point */ diff --git a/node_modules/montage/core/geometry/point.js b/node_modules/montage/core/geometry/point.js index f4767d02..ea210fbf 100755 --- a/node_modules/montage/core/geometry/point.js +++ b/node_modules/montage/core/geometry/point.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/geometry/point + @module montage/core/geometry/point @requires montage/core/core */ var Montage = require("montage").Montage; diff --git a/node_modules/montage/core/logger.js b/node_modules/montage/core/logger.js index 63bcabe3..ccb75b7a 100755 --- a/node_modules/montage/core/logger.js +++ b/node_modules/montage/core/logger.js @@ -28,8 +28,8 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/logger - @requires montage/core/core + @module montage/core/logger + @requires montage/core/core */ var Montage = require("montage").Montage, Logger, @@ -61,7 +61,7 @@ getFunctionName = function(montageObject) { }; /** - @function + @function @param {Date} date TODO @returns length hours, minutes, seconds, date.getMilliseconds() @private @@ -75,20 +75,20 @@ toTimeString = function(date) { } }; /** - @function + @function @private */ emptyLoggerFunction = function() { }; /** - @function + @function @private */ consoleLog = function() { console.log(arguments); }; /** - @function + @function @private */ consoleLogMontage = function() { diff --git a/node_modules/montage/core/state-chart.js b/node_modules/montage/core/state-chart.js index ca2c46b3..bc150d17 100755 --- a/node_modules/montage/core/state-chart.js +++ b/node_modules/montage/core/state-chart.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/state-chart + @module montage/core/state-chart @requires montage */ var Montage = require("montage").Montage; diff --git a/node_modules/montage/core/uuid.js b/node_modules/montage/core/uuid.js index 6f525c82..384fe928 100755 --- a/node_modules/montage/core/uuid.js +++ b/node_modules/montage/core/uuid.js @@ -33,7 +33,7 @@ POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/core/uuid + @module montage/core/uuid @requires montage/core/core */ /** diff --git a/node_modules/montage/data/control-listener.js b/node_modules/montage/data/control-listener.js index 1571f8b7..9e723ccf 100755 --- a/node_modules/montage/data/control-listener.js +++ b/node_modules/montage/data/control-listener.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/data/control-listener + @module montage/data/control-listener @requires montage/core/core @requires montage/core/logger */ diff --git a/node_modules/montage/data/ldap-access/ldap-object-id.js b/node_modules/montage/data/ldap-access/ldap-object-id.js index 49790933..be3c308f 100755 --- a/node_modules/montage/data/ldap-access/ldap-object-id.js +++ b/node_modules/montage/data/ldap-access/ldap-object-id.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/data/ldap-access/ldap-object-id + @module montage/data/ldap-access/ldap-object-id @requires montage/core/core @requires montage/core/logger */ diff --git a/node_modules/montage/data/nosql-access/nosql-object-id.js b/node_modules/montage/data/nosql-access/nosql-object-id.js index eae279a0..9ca9cbde 100755 --- a/node_modules/montage/data/nosql-access/nosql-object-id.js +++ b/node_modules/montage/data/nosql-access/nosql-object-id.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/data/nosql-access/nosql-object-id + @module montage/data/nosql-access/nosql-object-id @requires montage/core/core @requires montage/data/-object-id @requires montage/core/logger diff --git a/node_modules/montage/data/rest-access/rest-object-id.js b/node_modules/montage/data/rest-access/rest-object-id.js index 791965cd..45ebfb21 100755 --- a/node_modules/montage/data/rest-access/rest-object-id.js +++ b/node_modules/montage/data/rest-access/rest-object-id.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/data/rest-object-id + @module montage/data/rest-object-id @requires montage/data/object-id @requires montage/core/logger */ diff --git a/node_modules/montage/data/sql-access/sql-object-id.js b/node_modules/montage/data/sql-access/sql-object-id.js index 75e6a625..50a763f0 100755 --- a/node_modules/montage/data/sql-access/sql-object-id.js +++ b/node_modules/montage/data/sql-access/sql-object-id.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/data/sql-access/sql-object-id + @module montage/data/sql-access/sql-object-id @requires montage/core/core @requires montage/data/object-id @requires montage/core/logger diff --git a/node_modules/montage/ui/bluemoon/button-group.reel/button-group.js b/node_modules/montage/ui/bluemoon/button-group.reel/button-group.js index 0690dd87..9048bd6e 100644 --- a/node_modules/montage/ui/bluemoon/button-group.reel/button-group.js +++ b/node_modules/montage/ui/bluemoon/button-group.reel/button-group.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/bluemoon/button-group.reel" + @module "montage/ui/bluemoon/button-group.reel" @requires montage/core/core @requires "ui/component-group.reel" */ diff --git a/node_modules/montage/ui/bluemoon/button.reel/button.js b/node_modules/montage/ui/bluemoon/button.reel/button.js index e8d7c280..8d8be141 100644 --- a/node_modules/montage/ui/bluemoon/button.reel/button.js +++ b/node_modules/montage/ui/bluemoon/button.reel/button.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/bluemoon/button.reel" + @module "montage/ui/bluemoon/button.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.css b/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.css index 372e66f2..80c2344e 100644 --- a/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.css +++ b/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.css @@ -72,7 +72,7 @@ POSSIBILITY OF SUCH DAMAGE. } .montage-checkbox .checkmark{ - -webkit-transition-duration: 360ms; + -webkit-transition-duration: 360ms; } .montage-checkbox input[type=checkbox] { diff --git a/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.js b/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.js index 0a5ae0e9..a17f30bf 100644 --- a/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.js +++ b/node_modules/montage/ui/bluemoon/checkbox.reel/checkbox.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/bluemoon/input-checkbox.reel" + @module "montage/ui/bluemoon/input-checkbox.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/bluemoon/progress.reel/progress.css b/node_modules/montage/ui/bluemoon/progress.reel/progress.css index 54da4477..6c4f730d 100644 --- a/node_modules/montage/ui/bluemoon/progress.reel/progress.css +++ b/node_modules/montage/ui/bluemoon/progress.reel/progress.css @@ -28,31 +28,31 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ .montage-progress { - height: 7px; - padding: 1px; - border-radius: 5px / 4px; - overflow: hidden; - background: #ccc url(rule.png); - -webkit-box-shadow: inset rgba(0,0,0,.2) 0 0 0 1px, rgba(255,255,255,.5) 0 1px 1px, rgba(0,0,0,.1) 0 -1px 0px; - -moz-box-shadow: inset rgba(0,0,0,.2) 0 0 0 1px, rgba(255,255,255,.5) 0 1px 1px, rgba(0,0,0,.1) 0 -1px 0px; - box-shadow: inset rgba(0,0,0,.2) 0 0 0 1px, rgba(255,255,255,.5) 0 1px 1px, rgba(0,0,0,.1) 0 -1px 0px; + height: 7px; + padding: 1px; + border-radius: 5px / 4px; + overflow: hidden; + background: #ccc url(rule.png); + -webkit-box-shadow: inset rgba(0,0,0,.2) 0 0 0 1px, rgba(255,255,255,.5) 0 1px 1px, rgba(0,0,0,.1) 0 -1px 0px; + -moz-box-shadow: inset rgba(0,0,0,.2) 0 0 0 1px, rgba(255,255,255,.5) 0 1px 1px, rgba(0,0,0,.1) 0 -1px 0px; + box-shadow: inset rgba(0,0,0,.2) 0 0 0 1px, rgba(255,255,255,.5) 0 1px 1px, rgba(0,0,0,.1) 0 -1px 0px; } .montage-progress .bar { - height: 7px; - border-radius: inherit; - background: #0cbeff; + height: 7px; + border-radius: inherit; + background: #0cbeff; - -webkit-transition: width .3s cubic-bezier(0.25, 0.1, 0.3, 0.9); - -moz-transition: width .3s cubic-bezier(0.25, 0.1, 0.3, 0.9); - transition: width .3s cubic-bezier(0.25, 0.1, 0.3, 0.9); + -webkit-transition: width .3s cubic-bezier(0.25, 0.1, 0.3, 0.9); + -moz-transition: width .3s cubic-bezier(0.25, 0.1, 0.3, 0.9); + transition: width .3s cubic-bezier(0.25, 0.1, 0.3, 0.9); } .montage-progress.dark { - background: url(rule.png), -webkit-gradient(linear, 0% 0%, 0% 100%, - color-stop(0%, #303030), color-stop(100%, #3f3f3f) ); + background: url(rule.png), -webkit-gradient(linear, 0% 0%, 0% 100%, + color-stop(0%, #303030), color-stop(100%, #3f3f3f) ); - -webkit-box-shadow: rgba(255,255,255,.1) 0 1px 0, rgba(0,0,0,.1) 0 -1px 0px; - -moz-box-shadow: rgba(255,255,255,.1) 0 1px 0, rgba(0,0,0,.1) 0 -1px 0px; - box-shadow: rgba(255,255,255,.1) 0 1px 0, rgba(0,0,0,.1) 0 -1px 0px; + -webkit-box-shadow: rgba(255,255,255,.1) 0 1px 0, rgba(0,0,0,.1) 0 -1px 0px; + -moz-box-shadow: rgba(255,255,255,.1) 0 1px 0, rgba(0,0,0,.1) 0 -1px 0px; + box-shadow: rgba(255,255,255,.1) 0 1px 0, rgba(0,0,0,.1) 0 -1px 0px; } diff --git a/node_modules/montage/ui/bluemoon/progress.reel/progress.html b/node_modules/montage/ui/bluemoon/progress.reel/progress.html index 774da851..de516980 100644 --- a/node_modules/montage/ui/bluemoon/progress.reel/progress.html +++ b/node_modules/montage/ui/bluemoon/progress.reel/progress.html @@ -44,8 +44,8 @@ POSSIBILITY OF SUCH DAMAGE. -
-
-
+
+
+
diff --git a/node_modules/montage/ui/bluemoon/progress.reel/progress.js b/node_modules/montage/ui/bluemoon/progress.reel/progress.js index 01d0df9b..b6a6f91f 100644 --- a/node_modules/montage/ui/bluemoon/progress.reel/progress.js +++ b/node_modules/montage/ui/bluemoon/progress.reel/progress.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/bluemoon/progress.reel" + @module "montage/ui/bluemoon/progress.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/bluemoon/tabs.reel/tabs.js b/node_modules/montage/ui/bluemoon/tabs.reel/tabs.js index 9dfa1a30..7b95134a 100755 --- a/node_modules/montage/ui/bluemoon/tabs.reel/tabs.js +++ b/node_modules/montage/ui/bluemoon/tabs.reel/tabs.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/tabs.reel" + @module "montage/ui/tabs.reel" @requires montage/core/core @requires montage/ui/component @requires "montage/ui/repetition.reel" diff --git a/node_modules/montage/ui/bluemoon/textarea.reel/textarea.js b/node_modules/montage/ui/bluemoon/textarea.reel/textarea.js index c372bd16..64704b30 100644 --- a/node_modules/montage/ui/bluemoon/textarea.reel/textarea.js +++ b/node_modules/montage/ui/bluemoon/textarea.reel/textarea.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/bluemoon/textarea.reel" + @module "montage/ui/bluemoon/textarea.reel" @requires montage/core/core @requires montage/ui/editable-text */ diff --git a/node_modules/montage/ui/bluemoon/textfield.reel/textfield.js b/node_modules/montage/ui/bluemoon/textfield.reel/textfield.js index 59865ab8..74d78e54 100644 --- a/node_modules/montage/ui/bluemoon/textfield.reel/textfield.js +++ b/node_modules/montage/ui/bluemoon/textfield.reel/textfield.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/bluemoon/input-text.reel" + @module "montage/ui/bluemoon/input-text.reel" @requires montage/core/core @requires montage/ui/editable-text */ diff --git a/node_modules/montage/ui/bluemoon/toggle.reel/toggle.js b/node_modules/montage/ui/bluemoon/toggle.reel/toggle.js index 90d10df1..914bd1e1 100644 --- a/node_modules/montage/ui/bluemoon/toggle.reel/toggle.js +++ b/node_modules/montage/ui/bluemoon/toggle.reel/toggle.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/bluemoon/toggle.reel" + @module "montage/ui/bluemoon/toggle.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/component-group.reel/component-group.js b/node_modules/montage/ui/component-group.reel/component-group.js index a1f1cfa5..56cfc36a 100755 --- a/node_modules/montage/ui/component-group.reel/component-group.js +++ b/node_modules/montage/ui/component-group.reel/component-group.js @@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE. */ // TODO: ComponentList instead? ComponentContainer? /** - @module "montage/ui/component-group.reel" + @module "montage/ui/component-group.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/component.js b/node_modules/montage/ui/component.js index 55265e7e..fec13266 100755 --- a/node_modules/montage/ui/component.js +++ b/node_modules/montage/ui/component.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/ui/component + @module montage/ui/component @requires montage/core/core @requires montage/ui/reel @requires montage/core/gate diff --git a/node_modules/montage/ui/composer/composer.js b/node_modules/montage/ui/composer/composer.js index 2f53a12f..40d6cc29 100644 --- a/node_modules/montage/ui/composer/composer.js +++ b/node_modules/montage/ui/composer/composer.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/ui/event/composer/composer + @module montage/ui/event/composer/composer @requires montage/core/core */ var Montage = require("montage").Montage; diff --git a/node_modules/montage/ui/composer/press-composer.js b/node_modules/montage/ui/composer/press-composer.js index c016b2ca..be641a86 100644 --- a/node_modules/montage/ui/composer/press-composer.js +++ b/node_modules/montage/ui/composer/press-composer.js @@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE. */ /*global require, exports*/ /** - @module montage/ui/composer/press-composer + @module montage/ui/composer/press-composer @requires montage @requires montage/ui/composer/composer */ diff --git a/node_modules/montage/ui/composer/swipe-composer.js b/node_modules/montage/ui/composer/swipe-composer.js index ff187e75..0d1b4a69 100644 --- a/node_modules/montage/ui/composer/swipe-composer.js +++ b/node_modules/montage/ui/composer/swipe-composer.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/ui/composer/swipe-composer + @module montage/ui/composer/swipe-composer @requires montage @requires montage/ui/composer/composer */ diff --git a/node_modules/montage/ui/condition.reel/condition.js b/node_modules/montage/ui/condition.reel/condition.js index 539fbdad..9784aeee 100755 --- a/node_modules/montage/ui/condition.reel/condition.js +++ b/node_modules/montage/ui/condition.reel/condition.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/ui/condition.reel + @module montage/ui/condition.reel @requires montage/core/core @requires montage/ui/component @requires "montage/ui/slot.reel" diff --git a/node_modules/montage/ui/controller/media-controller.js b/node_modules/montage/ui/controller/media-controller.js index d68a3fa8..c6f2b5c5 100755 --- a/node_modules/montage/ui/controller/media-controller.js +++ b/node_modules/montage/ui/controller/media-controller.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/ui/controller/media-controller + @module montage/ui/controller/media-controller @requires montage/core/core @requires montage/ui/component @requires core/logger diff --git a/node_modules/montage/ui/dynamic-text.reel/dynamic-text.js b/node_modules/montage/ui/dynamic-text.reel/dynamic-text.js index a2957a24..e4c1e9dd 100755 --- a/node_modules/montage/ui/dynamic-text.reel/dynamic-text.js +++ b/node_modules/montage/ui/dynamic-text.reel/dynamic-text.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/dynamic-text.reel" + @module "montage/ui/dynamic-text.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/editable-text.js b/node_modules/montage/ui/editable-text.js index ea9fec8d..5b2c151e 100755 --- a/node_modules/montage/ui/editable-text.js +++ b/node_modules/montage/ui/editable-text.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module montage/ui/editable-text + @module montage/ui/editable-text @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/list.reel/list.js b/node_modules/montage/ui/list.reel/list.js index aeb16255..d613cb52 100755 --- a/node_modules/montage/ui/list.reel/list.js +++ b/node_modules/montage/ui/list.reel/list.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/list.reel" + @module "montage/ui/list.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/loading-panel.reel/loading-panel.js b/node_modules/montage/ui/loading-panel.reel/loading-panel.js index 4903e3eb..2a035c50 100755 --- a/node_modules/montage/ui/loading-panel.reel/loading-panel.js +++ b/node_modules/montage/ui/loading-panel.reel/loading-panel.js @@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/loading-panel.reel" + @module "montage/ui/loading-panel.reel" */ var Montage = require("montage").Montage, @@ -43,7 +43,7 @@ var Montage = require("montage").Montage, exports.LoadingPanel = Montage.create(Component, /** @lends module:montage/ui/loading-panel.LoadingPanel# */ { /** - The number of modules that are required to load. + The number of modules that are required to load. */ requiredModuleCount: { enumerable: false, @@ -51,7 +51,7 @@ exports.LoadingPanel = Montage.create(Component, /** @lends module:montage/ui/lo }, /** - The number of modules that have been initialized. + The number of modules that have been initialized. */ initializedModuleCount: { enumerable: false, diff --git a/node_modules/montage/ui/loading.reel/loading.js b/node_modules/montage/ui/loading.reel/loading.js index 246156d2..81458312 100755 --- a/node_modules/montage/ui/loading.reel/loading.js +++ b/node_modules/montage/ui/loading.reel/loading.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/loading.reel" + @module "montage/ui/loading.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/native/anchor.reel/anchor.js b/node_modules/montage/ui/native/anchor.reel/anchor.js index 6e72ea95..cae5ac2d 100644 --- a/node_modules/montage/ui/native/anchor.reel/anchor.js +++ b/node_modules/montage/ui/native/anchor.reel/anchor.js @@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/anchor.reel" + @module "montage/ui/anchor.reel" @requires montage/core/core @requires montage/ui/native-control */ diff --git a/node_modules/montage/ui/native/input-date.reel/input-date.js b/node_modules/montage/ui/native/input-date.reel/input-date.js index 6af953e6..44dc964f 100644 --- a/node_modules/montage/ui/native/input-date.reel/input-date.js +++ b/node_modules/montage/ui/native/input-date.reel/input-date.js @@ -39,7 +39,7 @@ var Montage = require("montage").Montage, TextInput = require("ui/text-input").TextInput; /** - Wraps an <input type="date"> element as a component. + Wraps an <input type="date"> element as a component. @class module:"montage/ui/input-date.reel".InputDate @extends module:montage/ui/text-input.TextInput */ @@ -49,22 +49,22 @@ var InputDate = exports.InputDate = Montage.create(TextInput, { InputDate.addAttributes( /** @lends module:"montage/ui/input-date.reel".InputDate# */{ /** - The upper bound for the element’s value represented in the "full-date" format, (for example, 2001-05-24). - @type {string} - @default: null + The upper bound for the element’s value represented in the "full-date" format, (for example, 2001-05-24). + @type {string} + @default: null */ max: null, /** - The lower bound for the element’s value represented in the "full-date" format, (for example, 2001-05-24). - @type {string} - @default: null + The lower bound for the element’s value represented in the "full-date" format, (for example, 2001-05-24). + @type {string} + @default: null */ min: null, /** - The amount the date changes with each step. - @type {string|number} - @default null + The amount the date changes with each step. + @type {string|number} + @default null */ step: null }); diff --git a/node_modules/montage/ui/native/input-number.reel/input-number.js b/node_modules/montage/ui/native/input-number.reel/input-number.js index 33700b92..f0f88bb6 100644 --- a/node_modules/montage/ui/native/input-number.reel/input-number.js +++ b/node_modules/montage/ui/native/input-number.reel/input-number.js @@ -50,23 +50,23 @@ var InputNumber = exports.InputNumber = Montage.create(TextInput, { InputNumber.addAttributes(/** @lends module:"montage/ui/input-number.reel".InputNumber */{ /** - The maximum value displayed but the number control. - @type {number} - @default null + The maximum value displayed but the number control. + @type {number} + @default null */ max: {dataType: 'number'}, /** - The minimum value displayed but the number control. - @type {number} - @default null + The minimum value displayed but the number control. + @type {number} + @default null */ min: {dataType: 'number'}, /** - The amount the number changes with each step. - @type {number} - @default null + The amount the number changes with each step. + @type {number} + @default null */ step: null // number or 'any' }); diff --git a/node_modules/montage/ui/popup/popup.reel/popup.css b/node_modules/montage/ui/popup/popup.reel/popup.css index 569f154c..875e23b5 100755 --- a/node_modules/montage/ui/popup/popup.reel/popup.css +++ b/node_modules/montage/ui/popup/popup.reel/popup.css @@ -32,12 +32,12 @@ POSSIBILITY OF SUCH DAMAGE. display: none; } .clearfix:after { - visibility: hidden; - display: block; - font-size: 0; - content: " "; - clear: both; - height: 0; + visibility: hidden; + display: block; + font-size: 0; + content: " "; + clear: both; + height: 0; } diff --git a/node_modules/montage/ui/progress.reel/progress.html b/node_modules/montage/ui/progress.reel/progress.html index 1cc691be..08933c08 100644 --- a/node_modules/montage/ui/progress.reel/progress.html +++ b/node_modules/montage/ui/progress.reel/progress.html @@ -45,8 +45,8 @@ POSSIBILITY OF SUCH DAMAGE. -
-
-
+
+
+
diff --git a/node_modules/montage/ui/repetition.reel/repetition.js b/node_modules/montage/ui/repetition.reel/repetition.js index 05498b75..58bce29f 100755 --- a/node_modules/montage/ui/repetition.reel/repetition.js +++ b/node_modules/montage/ui/repetition.reel/repetition.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/repetition.reel" + @module "montage/ui/repetition.reel" @requires montage/core/core @requires montage/ui/component @requires montage/ui/template diff --git a/node_modules/montage/ui/rich-text-editor/overlays/rich-text-linkpopup.reel/rich-text-linkpopup.js b/node_modules/montage/ui/rich-text-editor/overlays/rich-text-linkpopup.reel/rich-text-linkpopup.js index 5e0e5996..eb79f2b8 100644 --- a/node_modules/montage/ui/rich-text-editor/overlays/rich-text-linkpopup.reel/rich-text-linkpopup.js +++ b/node_modules/montage/ui/rich-text-editor/overlays/rich-text-linkpopup.reel/rich-text-linkpopup.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/rich-text-editor/overlays/rich-text-resizer.reel" + @module "montage/ui/rich-text-editor/overlays/rich-text-resizer.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/rich-text-editor/overlays/rich-text-resizer.reel/rich-text-resizer.js b/node_modules/montage/ui/rich-text-editor/overlays/rich-text-resizer.reel/rich-text-resizer.js index 58d6cecd..adb80bbc 100644 --- a/node_modules/montage/ui/rich-text-editor/overlays/rich-text-resizer.reel/rich-text-resizer.js +++ b/node_modules/montage/ui/rich-text-editor/overlays/rich-text-resizer.reel/rich-text-resizer.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/rich-text-editor/overlays/rich-text-resizer.reel" + @module "montage/ui/rich-text-editor/overlays/rich-text-resizer.reel" @requires montage/core/core @requires montage/core/geometry/point @requires montage/ui/component diff --git a/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-editor-base.js b/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-editor-base.js index 43cb9060..448e409c 100644 --- a/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-editor-base.js +++ b/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-editor-base.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/rich-text-editor.reel" + @module "montage/ui/rich-text-editor.reel" @requires montage/core/core */ var Montage = require("montage").Montage, diff --git a/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-sanitizer.js b/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-sanitizer.js index eab2e5b9..130bb5f4 100644 --- a/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-sanitizer.js +++ b/node_modules/montage/ui/rich-text-editor/rich-text-editor.reel/rich-text-sanitizer.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/rich-text-sanitizer.js" + @module "montage/ui/rich-text-sanitizer.js" @requires montage/core/core */ var Montage = require("montage").Montage; diff --git a/node_modules/montage/ui/slot.reel/slot.js b/node_modules/montage/ui/slot.reel/slot.js index 058e37c7..dc249aa9 100755 --- a/node_modules/montage/ui/slot.reel/slot.js +++ b/node_modules/montage/ui/slot.reel/slot.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/slot.reel" + @module "montage/ui/slot.reel" @requires montage/core/core @requires montage/ui/component */ diff --git a/node_modules/montage/ui/substitution.reel/substitution.js b/node_modules/montage/ui/substitution.reel/substitution.js index 3b5d5530..8d2a37cc 100755 --- a/node_modules/montage/ui/substitution.reel/substitution.js +++ b/node_modules/montage/ui/substitution.reel/substitution.js @@ -28,7 +28,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** - @module "montage/ui/substitution.reel" + @module "montage/ui/substitution.reel" @requires montage/core/core @requires montage/ui/component @requires montage/ui/slot diff --git a/node_modules/montage/ui/video-player.reel/video-player.css b/node_modules/montage/ui/video-player.reel/video-player.css index dd082439..135f0099 100755 --- a/node_modules/montage/ui/video-player.reel/video-player.css +++ b/node_modules/montage/ui/video-player.reel/video-player.css @@ -44,9 +44,9 @@ MARK: media position: absolute; display: -webkit-box; -webkit-box-sizing: border-box; - z-index: 1000; /* TODO: Define global z-index regions */ + z-index: 1000; /* TODO: Define global z-index regions */ top: 0; - left: 0; + left: 0; border: none; width: 100%; height: 100%; @@ -66,15 +66,15 @@ MARK: Controller .montage-video-player .control-wrapper { position: absolute; left: 0; - bottom: 0; - right: 0; - height: 50px; - box-shadow: inset 0 2px 6px 2px hsla(0,0%,0%,.4); - background-color: hsla(0,0%,0%,.95); - background-image: -webkit-linear-gradient(top, hsla(0,0%,100%,.27) 0%, - hsla(0,0%,100%,.15) 50%, - hsla(0,0%,30%,.4) 50%, - hsla(0,0%,0%,1) 100%); + bottom: 0; + right: 0; + height: 50px; + box-shadow: inset 0 2px 6px 2px hsla(0,0%,0%,.4); + background-color: hsla(0,0%,0%,.95); + background-image: -webkit-linear-gradient(top, hsla(0,0%,100%,.27) 0%, + hsla(0,0%,100%,.15) 50%, + hsla(0,0%,30%,.4) 50%, + hsla(0,0%,0%,1) 100%); } .montage-video-player .control-wrapper.hide-controls { @@ -170,7 +170,7 @@ MARK: Button Panel background-position: center center; } .montage-video-player .controller-button:active { - background-color: hsla(0,0%,0%,.4); + background-color: hsla(0,0%,0%,.4); } .montage-video-player .play { background-image: url("images/play.png"); } @@ -200,22 +200,22 @@ MARK: Volume Panel .montage-video-player .controller-progress { height: 15px; - box-shadow: inset 0 0px 3px 1px hsla(0,0%,0%,.5); - background: -webkit-repeating-linear-gradient(left, hsl(0,0%,25%) 0, hsl(0,0%,25%) 3px, - hsl(0,0%,10%) 3px, hsl(0,0%,10%) 5px); + box-shadow: inset 0 0px 3px 1px hsla(0,0%,0%,.5); + background: -webkit-repeating-linear-gradient(left, hsl(0,0%,25%) 0, hsl(0,0%,25%) 3px, + hsl(0,0%,10%) 3px, hsl(0,0%,10%) 5px); } .montage-video-player .controller-progress:before { - content: ""; - position: absolute; + content: ""; + position: absolute; top: 0; right: 0; bottom: 0; left: 0; - background: -webkit-linear-gradient(top, hsla(0,0%,0%,0), hsla(0,0%,0%,.3) ); + background: -webkit-linear-gradient(top, hsla(0,0%,0%,0), hsla(0,0%,0%,.3) ); } .montage-video-player .volume-progress { width: 50%; height: 100%; background: -webkit-repeating-linear-gradient(left, hsl(195,90%,50%) 0, hsl(195,90%,50%) 3px, - transparent 3px, transparent 5px); + transparent 3px, transparent 5px); -webkit-transition: width .1s ease-in-out; } @@ -226,15 +226,15 @@ MARK: Volume Panel .montage-video-player .volume-minus { background-image: url("images/volume-down.png"); } .montage-video-player .volume-minus:active { - background-color: transparent; - background-image: url("images/volume-down.png"), - -webkit-linear-gradient(right, hsla(0,0%,0%,0), hsla(0,0%,0%,.5) ); + background-color: transparent; + background-image: url("images/volume-down.png"), + -webkit-linear-gradient(right, hsla(0,0%,0%,0), hsla(0,0%,0%,.5) ); } .montage-video-player .volume-plus { background-image: url("images/volume-up.png"); } .montage-video-player .volume-plus:active { - background-color: transparent; - background-image: url("images/volume-up.png"), - -webkit-linear-gradient(left, hsla(0,0%,0%,0), hsla(0,0%,0%,.5) ); + background-color: transparent; + background-image: url("images/volume-up.png"), + -webkit-linear-gradient(left, hsla(0,0%,0%,0), hsla(0,0%,0%,.5) ); } .montage-video-player .controller-volume-panel .mute { display: none; } /* also MUTE[muted] */ diff --git a/node_modules/montage/ui/video-player.reel/video-player.js b/node_modules/montage/ui/video-player.reel/video-player.js index 351b372c..13cfd845 100755 --- a/node_modules/montage/ui/video-player.reel/video-player.js +++ b/node_modules/montage/ui/video-player.reel/video-player.js @@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE. */ "use strict"; /** - @module montage/ui/video-player + @module montage/ui/video-player @requires montage @requires montage/ui/component @requires core/logger -- cgit v1.2.3 From 04343eda8c2f870b0da55cfdc8003c99fe1cc4de Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 6 Jul 2012 11:53:10 -0700 Subject: Remove trailing spaces --- .../feed-reader/feed-entry.reel/feed-entry.js | 4 ++-- .../feed-reader/feed-reader.reel/feed-reader.js | 2 +- .../ui/autocomplete/result-item.reel/result-item.js | 6 +++--- node_modules/montage/ui/flow.reel/flow.js | 10 +++++----- .../montage/ui/input-checkbox.reel/input-checkbox.js | 10 +++++----- node_modules/tools/template/template-creator.js | 20 ++++++++++---------- 6 files changed, 26 insertions(+), 26 deletions(-) (limited to 'node_modules') diff --git a/node_modules/montage-google/feed-reader/feed-entry.reel/feed-entry.js b/node_modules/montage-google/feed-reader/feed-entry.reel/feed-entry.js index bd69276b..d92c6b4b 100644 --- a/node_modules/montage-google/feed-reader/feed-entry.reel/feed-entry.js +++ b/node_modules/montage-google/feed-reader/feed-entry.reel/feed-entry.js @@ -38,8 +38,8 @@ exports.FeedEntry = Montage.create(Component, { return this._entry; }, set: function(value) { - this._entry = value; + this._entry = value; } } - + }); diff --git a/node_modules/montage-google/feed-reader/feed-reader.reel/feed-reader.js b/node_modules/montage-google/feed-reader/feed-reader.reel/feed-reader.js index 6f0c1cc6..00218b1f 100644 --- a/node_modules/montage-google/feed-reader/feed-reader.reel/feed-reader.js +++ b/node_modules/montage-google/feed-reader/feed-reader.reel/feed-reader.js @@ -206,7 +206,7 @@ exports.FeedReader = Montage.create(Component, { } }, - + serializeProperties: { value: function(serializer) { serializer.set("element", this.element); diff --git a/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js b/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js index 9a08d4df..1e19bbd3 100644 --- a/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js +++ b/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js @@ -32,9 +32,9 @@ var Montage = require("montage").Montage, DynamicText = require("ui/dynamic-text.reel").DynamicText; exports.ResultItem = Montage.create(DynamicText, { - + textPropertyPath: {value: null}, - + _object: {value: null}, object: { get: function() { @@ -42,7 +42,7 @@ exports.ResultItem = Montage.create(DynamicText, { }, set: function(aValue) { if(aValue) { - this._object = aValue; + this._object = aValue; } if(this._object) { if(this.textPropertyPath) { diff --git a/node_modules/montage/ui/flow.reel/flow.js b/node_modules/montage/ui/flow.reel/flow.js index 365fceb5..579b284e 100644 --- a/node_modules/montage/ui/flow.reel/flow.js +++ b/node_modules/montage/ui/flow.reel/flow.js @@ -440,12 +440,12 @@ var Flow = exports.Flow = Montage.create(Component, { } } }, - + _halfPI: { enumerable: false, value: Math.PI*0.5 }, - + _doublePI: { enumerable: false, value: Math.PI*2 @@ -807,19 +807,19 @@ var Flow = exports.Flow = Montage.create(Component, { distinct: true, value: [] }, - + _cachedPosParameter: { enumerable: false, distinct: true, value: {} }, - + _cachedDrawOffset: { enumerable: false, distinct: true, value: {} }, - + _cachedSlide: { enumerable: false, diff --git a/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js b/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js index d0c32821..b446d7b9 100644 --- a/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js +++ b/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js @@ -30,20 +30,20 @@ POSSIBILITY OF SUCH DAMAGE. /*global require,exports */ var Montage = require("montage").Montage, Component = require("ui/component").Component, - NativeInputCheckbox = require("ui/native/input-checkbox.reel").InputCheckbox; - + NativeInputCheckbox = require("ui/native/input-checkbox.reel").InputCheckbox; + /** * Input Checkbox */ exports.InputCheckbox = Montage.create(NativeInputCheckbox, { - + hasTemplate: {value: true}, - + didSetElement: { value: function() { NativeInputCheckbox.didSetElement.call(this); this['class'] = (this['class'] || '') + ' montage-inputCheckbox'; } } - + }); diff --git a/node_modules/tools/template/template-creator.js b/node_modules/tools/template/template-creator.js index 9951fb02..984edd43 100755 --- a/node_modules/tools/template/template-creator.js +++ b/node_modules/tools/template/template-creator.js @@ -47,13 +47,13 @@ var TemplateCreator = exports.TemplateCreator = Montage.create(Template, /** @le return this.initWithHeadAndBodyElements(doc.head, doc.body, montageJsPath); } }, - + initWithBodyElement: { value: function(body, montageJsPath) { return this.initWithHeadAndBodyElements(null, body, montageJsPath); } }, - + initWithHeadAndBodyElements: { value: function(head, body, montageJsPath) { var serializer = this.serializer, @@ -64,11 +64,11 @@ var TemplateCreator = exports.TemplateCreator = Montage.create(Template, /** @le doc, script, self = this; - + this._componentNamesIndex = {}; this._objectNamesIndex = {}; doc = this._document = document.implementation.createHTMLDocument(""); - + function copyNode(sourceNode, targetNode, isRootNode) { var childNodes = sourceNode.childNodes, childNode, @@ -76,7 +76,7 @@ var TemplateCreator = exports.TemplateCreator = Montage.create(Template, /** @le label, script, component = isRootNode ? null : sourceNode.controller; - + if (component) { label = self._generateLabelForComponent(component, Object.keys(components)); componentsElements[label] = component._element; @@ -92,7 +92,7 @@ var TemplateCreator = exports.TemplateCreator = Montage.create(Template, /** @le } } } - + if (head) { doc.head.innerHTML = head.innerHTML; } @@ -102,7 +102,7 @@ var TemplateCreator = exports.TemplateCreator = Montage.create(Template, /** @le doc.head.appendChild(script); doc.head.insertBefore(doc.createTextNode("\n "), script); } - + // try to make things look nice... var html = doc.documentElement; html.insertBefore(doc.createTextNode("\n"), doc.head); @@ -112,7 +112,7 @@ var TemplateCreator = exports.TemplateCreator = Montage.create(Template, /** @le // the first child is the title doc.head.insertBefore(doc.createTextNode("\n "), doc.head.firstChild); } - + copyNode(body, this._document.body, true); this._ownerSerialization = serializer.serialize(components); for (var label in components) { @@ -121,11 +121,11 @@ var TemplateCreator = exports.TemplateCreator = Montage.create(Template, /** @le } components = componentsChildComponents = null; this._externalObjects = serializer.getExternalObjects(); - + return this; } }, - + _componentNamesIndex: { value: null }, -- cgit v1.2.3 From 6803c0abd279fcb640c38b3881b751bab982cbe0 Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 6 Jul 2012 12:42:16 -0700 Subject: Remove trailing spaces --- node_modules/montage-google/map.reel/map.html | 10 +++++----- node_modules/montage/ui/button.reel/button.css | 2 +- node_modules/montage/ui/input-number.reel/input-number.html | 2 +- node_modules/montage/ui/input-radio.reel/input-radio.css | 10 +++++----- node_modules/montage/ui/input-range.reel/input-range.css | 2 +- node_modules/montage/ui/scroller.reel/scroller.css | 2 +- node_modules/montage/ui/select.reel/select.css | 6 +++--- node_modules/montage/ui/textarea.reel/textarea.css | 6 +++--- node_modules/montage/ui/token-field/token.reel/token.css | 2 +- node_modules/montage/ui/token-field/token.reel/token.html | 2 +- 10 files changed, 22 insertions(+), 22 deletions(-) (limited to 'node_modules') diff --git a/node_modules/montage-google/map.reel/map.html b/node_modules/montage-google/map.reel/map.html index 9eec63e5..03eaf449 100644 --- a/node_modules/montage-google/map.reel/map.html +++ b/node_modules/montage-google/map.reel/map.html @@ -37,13 +37,13 @@ POSSIBILITY OF SUCH DAMAGE. @@ -61,9 +61,9 @@ POSSIBILITY OF SUCH DAMAGE. - -
-
MAP
+ +
+
MAP
diff --git a/node_modules/montage/ui/button.reel/button.css b/node_modules/montage/ui/button.reel/button.css index 9edb8f3d..684cefb2 100644 --- a/node_modules/montage/ui/button.reel/button.css +++ b/node_modules/montage/ui/button.reel/button.css @@ -27,7 +27,7 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - + .montage-button { outline: none; box-sizing: border-box; diff --git a/node_modules/montage/ui/input-number.reel/input-number.html b/node_modules/montage/ui/input-number.reel/input-number.html index 8c1741a8..2bf86161 100644 --- a/node_modules/montage/ui/input-number.reel/input-number.html +++ b/node_modules/montage/ui/input-number.reel/input-number.html @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. - + diff --git a/node_modules/montage/ui/input-radio.reel/input-radio.css b/node_modules/montage/ui/input-radio.reel/input-radio.css index 020c4cee..25231b21 100644 --- a/node_modules/montage/ui/input-radio.reel/input-radio.css +++ b/node_modules/montage/ui/input-radio.reel/input-radio.css @@ -27,7 +27,7 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - + .montage-inputRadio { -webkit-appearance: none; -moz-appearance: none; @@ -42,19 +42,19 @@ POSSIBILITY OF SUCH DAMAGE. background: #f2f2f2; cursor: pointer; } - + .montage-inputRadio:hover { background-color: #fff; } - + .montage-inputRadio:active { background-color: #e5e5e5; } - + .montage-inputRadio:focus { border-color: #7f7f7f; } - + .montage-inputRadio:checked { background: #f2f2f2 url(radio.png) no-repeat center; } diff --git a/node_modules/montage/ui/input-range.reel/input-range.css b/node_modules/montage/ui/input-range.reel/input-range.css index bbd3f03c..1a6060d4 100644 --- a/node_modules/montage/ui/input-range.reel/input-range.css +++ b/node_modules/montage/ui/input-range.reel/input-range.css @@ -27,7 +27,7 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - + .montage-inputRange { position: relative; display: inline-block; diff --git a/node_modules/montage/ui/scroller.reel/scroller.css b/node_modules/montage/ui/scroller.reel/scroller.css index 25e9b5b5..0dafcc28 100644 --- a/node_modules/montage/ui/scroller.reel/scroller.css +++ b/node_modules/montage/ui/scroller.reel/scroller.css @@ -27,7 +27,7 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - + .montage-scroller { position: relative; display: block; diff --git a/node_modules/montage/ui/select.reel/select.css b/node_modules/montage/ui/select.reel/select.css index 6ed695d3..f96a40df 100644 --- a/node_modules/montage/ui/select.reel/select.css +++ b/node_modules/montage/ui/select.reel/select.css @@ -41,15 +41,15 @@ POSSIBILITY OF SUCH DAMAGE. background: #f2f2f2 url(select.png) no-repeat right center; cursor: pointer; } - + .montage-select:hover { background-color: #fff; } - + .montage-select:active { background-color: #e5e5e5; } - + .montage-select:focus { border-color: #7f7f7f; } diff --git a/node_modules/montage/ui/textarea.reel/textarea.css b/node_modules/montage/ui/textarea.reel/textarea.css index 19d362a3..89c46e98 100644 --- a/node_modules/montage/ui/textarea.reel/textarea.css +++ b/node_modules/montage/ui/textarea.reel/textarea.css @@ -27,7 +27,7 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - + .montage-textarea { outline: none; box-sizing: border-box; @@ -40,11 +40,11 @@ POSSIBILITY OF SUCH DAMAGE. border-radius: 3px; background-color: #fff; } - + .montage-textarea:hover { border-color: #ccc; } - + .montage-textarea:focus { border-color: #7f7f7f; } diff --git a/node_modules/montage/ui/token-field/token.reel/token.css b/node_modules/montage/ui/token-field/token.reel/token.css index bc60406d..c88215b1 100644 --- a/node_modules/montage/ui/token-field/token.reel/token.css +++ b/node_modules/montage/ui/token-field/token.reel/token.css @@ -47,7 +47,7 @@ POSSIBILITY OF SUCH DAMAGE. padding: 3px 6px; border-left: inherit; border-radius: 0 2px 2px 0; - color: hsl(0,0%,60%); + color: hsl(0,0%,60%); cursor: pointer; } .montage-token > .montage-token-delete:hover { diff --git a/node_modules