| Revision 1681,
373 bytes
checked in by pablo, 14 months ago
(diff) |
|
Re-integrating 5.6 branch into trunk
|
| Line | |
|---|
| 1 | package com.longtailvideo.jwplayer.plugins { |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | public dynamic class PluginConfig { |
|---|
| 5 | private var _id:String; |
|---|
| 6 | |
|---|
| 7 | public function PluginConfig(pluginId:String, obj:Object=null) { |
|---|
| 8 | this._id = pluginId.toLowerCase(); |
|---|
| 9 | if (obj) { |
|---|
| 10 | for (var idx:String in obj) { |
|---|
| 11 | this[idx] = obj[idx]; |
|---|
| 12 | } |
|---|
| 13 | } |
|---|
| 14 | } |
|---|
| 15 | |
|---|
| 16 | public function get id():String { |
|---|
| 17 | return _id; |
|---|
| 18 | } |
|---|
| 19 | |
|---|
| 20 | } |
|---|
| 21 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.