+
Welcome to Airtime!
+
Here's how you can get started using Airtime to automate your broadcasts:
+
+
+ - Add your files to the library using the "Add Audio" button. You can drag and drop your files to this window too.
+ - Create a show by going to "Schedule" in the menu bar, and then clicking the "+ Show" icon. This can be either a one-time or repeating show. Only admins can add shows.
+ - Create a playlist in the Playlist Builder menu using your audio files.
+ - Add the playlist to the show by going to your show in the Schedule calendar, right-clicking on it and selecting "Schedule."
+ - Select your playlist and drag and drop it to the "Items in this show" area.
+
+
Then you're good to go!
+For more detailed help, read the user manual
+
+
diff --git a/public/css/images/big_gray_logo.png b/public/css/images/big_gray_logo.png
new file mode 100644
index 000000000..45982bd1a
Binary files /dev/null and b/public/css/images/big_gray_logo.png differ
diff --git a/public/css/images/progressbar_show_red.png b/public/css/images/progressbar_show_error.png
similarity index 100%
rename from public/css/images/progressbar_show_red.png
rename to public/css/images/progressbar_show_error.png
diff --git a/public/css/images/sf_arror.png b/public/css/images/sf_arror.png
new file mode 100644
index 000000000..706304a90
Binary files /dev/null and b/public/css/images/sf_arror.png differ
diff --git a/public/css/styles.css b/public/css/styles.css
index adf53ab77..ef101fea8 100644
--- a/public/css/styles.css
+++ b/public/css/styles.css
@@ -1347,6 +1347,68 @@ ul.errors li {
#show_content_dialog .datatable {
margin-top:8px;
-
-
+}
+.simple-formblock.metadata {
+ border:none;
+ width:100%;
+}
+#side_playlist .simple-formblock.metadata .input_text, #side_playlist .simple-formblock.metadata .input_text_area {
+ width:95%;
+}
+#side_playlist .simple-formblock.metadata.simple-formblock dd {
+ width:70%;
+}
+#side_playlist h3.plain {
+ float:none;
+ font-size:18px;
+ margin:2px 0 20px 0;
+}
+
+.qtip {
+ font-size:11px;
+ line-height:160%;
+}
+
+#schedule-show-who.scrolled {
+ margin-bottom: 0;
+ max-height:300px;
+ overflow:auto;
+}
+.text-content {
+ padding:20px 10px 40px 58px;
+ background: url(images/sf_arror.png) no-repeat 60% 0;
+ height:100%;
+}
+.text-content h2 {
+ font-size:2.4em;
+ color:#1f1f1f;
+}
+.text-content p {
+ font-size:1.6em;
+ line-height:140%;
+ color:#1f1f1f;
+ margin:0 0 1.4em 0;
+}
+.text-content a {
+ color:#f2f2f2;
+ text-decoration:none;
+}
+.text-content a:hover {
+ text-decoration:underline;
+}
+
+.text-content ol {
+ margin:0 0 22px 25px;
+ padding:0;
+ list-style-position:outside;
+}
+
+.text-content ol li {
+ margin:0 0 6px 0;
+ font-size:1.7em;
+ display:list-item;
+ color:#1f1f1f;
+}
+.gray-logo {
+ margin:5px 0 0 20px;
}
\ No newline at end of file
diff --git a/public/js/airtime/user/user.js b/public/js/airtime/user/user.js
index 969f9f9aa..4add2d4b1 100644
--- a/public/js/airtime/user/user.js
+++ b/public/js/airtime/user/user.js
@@ -8,6 +8,9 @@ function populateForm(entries){
$('#first_name').val(entries.first_name);
$('#last_name').val(entries.last_name);
$('#type').val(entries.type);
+ $('#email').val(entries.email);
+ $('#skype').val(entries.skype_contact);
+ $('#jabber').val(entries.jabber_contact);
if (entries.id.length != 0){
$('#login').attr('readonly', 'readonly');
diff --git a/public/js/playlist/playlist.js b/public/js/playlist/playlist.js
index fae37b183..b48f25a65 100644
--- a/public/js/playlist/playlist.js
+++ b/public/js/playlist/playlist.js
@@ -99,7 +99,7 @@ function updateProgressBarValue(){
}
} else {
$('#on-air-info').attr("class", "on-air-info off");
- $('#progress-show').attr("class", "progress-show-red");
+ $('#progress-show').attr("class", "progress-show-error");
}
$('#progress-bar').attr("style", "width:"+songPercentDone+"%");