From 6c91586db463c2c265a31b7f6ff2b0b187be69c9 Mon Sep 17 00:00:00 2001 From: Seth Howard Date: Fri, 20 Jun 2014 15:48:04 -0600 Subject: [PATCH] updated year on files --- js/realtime-client-utils.js | 2 +- js/rtpg.collaborators.js | 2 +- js/rtpg.custom.js | 2 +- js/rtpg.js | 2 +- js/rtpg.list.js | 11 ++--------- js/rtpg.log.js | 2 +- js/rtpg.map.js | 2 +- js/rtpg.string.js | 2 +- js/rtpg.ui.js | 2 +- redirect.py | 2 +- 10 files changed, 11 insertions(+), 18 deletions(-) diff --git a/js/realtime-client-utils.js b/js/realtime-client-utils.js index 19c3e0d..777220f 100644 --- a/js/realtime-client-utils.js +++ b/js/realtime-client-utils.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/js/rtpg.collaborators.js b/js/rtpg.collaborators.js index b72d478..a6b24c4 100644 --- a/js/rtpg.collaborators.js +++ b/js/rtpg.collaborators.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/js/rtpg.custom.js b/js/rtpg.custom.js index 5fc00b0..9698798 100644 --- a/js/rtpg.custom.js +++ b/js/rtpg.custom.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/js/rtpg.js b/js/rtpg.js index 0622c6d..278c09e 100644 --- a/js/rtpg.js +++ b/js/rtpg.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/js/rtpg.list.js b/js/rtpg.list.js index 247a528..dad11d3 100644 --- a/js/rtpg.list.js +++ b/js/rtpg.list.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -61,7 +61,6 @@ rtpg.list.loadField = function() { rtpg.list.field = rtpg.getField(rtpg.list.FIELD_NAME); } - rtpg.list.initializeModel = function(model) { var field = model.createList(); field.pushAll(rtpg.list.START_VALUE); @@ -94,7 +93,6 @@ rtpg.list.onRemoveItem = function() { rtpg.list.field.remove(indexToRemove); }; - rtpg.list.onAddItem = function() { var newValue = $(rtpg.list.ADD_CONTENT_SELECTOR).val(); if (newValue != '') { @@ -102,25 +100,21 @@ rtpg.list.onAddItem = function() { } } - rtpg.list.onRealtimeAdded = function(evt) { rtpg.list.updateUi(); rtpg.log.logEvent(evt, 'List Items Added'); }; - rtpg.list.onRealtimeRemoved = function(evt) { rtpg.list.updateUi(); rtpg.log.logEvent(evt, 'List Items Removed'); }; - rtpg.list.onRealtimeSet = function(evt) { rtpg.list.updateUi(); rtpg.log.logEvent(evt, 'List Item Set'); }; - rtpg.list.connectUi = function() { $(rtpg.list.INPUT_SELECTOR).change(rtpg.list.onSelect); $(rtpg.list.ADD_SELECTOR).click(rtpg.list.onAddItem); @@ -129,9 +123,8 @@ rtpg.list.connectUi = function() { $(rtpg.list.SET_SELECTOR).click(rtpg.list.onSetItem); }; - rtpg.list.connectRealtime = function() { rtpg.list.field.addEventListener(gapi.drive.realtime.EventType.VALUES_ADDED, rtpg.list.onRealtimeAdded); rtpg.list.field.addEventListener(gapi.drive.realtime.EventType.VALUES_REMOVED, rtpg.list.onRealtimeRemoved); rtpg.list.field.addEventListener(gapi.drive.realtime.EventType.VALUES_SET, rtpg.list.onRealtimeSet); -}; +}; \ No newline at end of file diff --git a/js/rtpg.log.js b/js/rtpg.log.js index 61d3985..cb528b6 100644 --- a/js/rtpg.log.js +++ b/js/rtpg.log.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/js/rtpg.map.js b/js/rtpg.map.js index 64ebf2b..b3587e6 100644 --- a/js/rtpg.map.js +++ b/js/rtpg.map.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/js/rtpg.string.js b/js/rtpg.string.js index f87bfee..8e498e4 100644 --- a/js/rtpg.string.js +++ b/js/rtpg.string.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/js/rtpg.ui.js b/js/rtpg.ui.js index ce23323..c9a857f 100644 --- a/js/rtpg.ui.js +++ b/js/rtpg.ui.js @@ -1,5 +1,5 @@ /** - * Copyright 2013 Google Inc. All Rights Reserved. + * Copyright 2014 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/redirect.py b/redirect.py index 64f124d..6c3c6b0 100644 --- a/redirect.py +++ b/redirect.py @@ -1,4 +1,4 @@ -# Copyright 2013 Google Inc. All Rights Reserved. +# Copyright 2014 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.