added $ to the closure

This commit is contained in:
Manuel Friedli 2014-08-28 08:50:19 +02:00
parent 4e98987653
commit ef4ec5fc4b
7 changed files with 14 additions and 14 deletions

View File

@ -12,7 +12,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function() {
(function($) {
'use strict';
var es_ist = {1: [1, 2, 4, 5, 6]};
var uhr = {10: [9, 10, 11]};
@ -71,4 +71,4 @@
}
};
$.fritteli.uhr.register('de', layout);
}());
}(jQuery));

View File

@ -16,7 +16,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function() {
(function($) {
'use strict';
var vorne0 = {
3: [2, 3, 4],
@ -244,4 +244,4 @@
}
};
$.fritteli.uhr.register('de_CH_seconds', layout);
}());
}(jQuery));

View File

@ -12,7 +12,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function() {
(function($) {
'use strict';
// hilfsvariablen
var es_isch = {1: [1, 2, 4, 5, 6, 7]};
@ -94,4 +94,4 @@
};
// Das Layout bei der Uhr unter dem Code "de_CH" registrieren.
$.fritteli.uhr.register('de_CH', layout);
}());
}(jQuery));

View File

@ -12,7 +12,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function() {
(function($) {
'use strict';
var es_isch = {1: [1, 2, 4, 5, 6, 7]};
var genau = {3: [7, 8, 9, 10, 11]};
@ -69,4 +69,4 @@
}
};
$.fritteli.uhr.register('de_CH_genau', layout);
}());
}(jQuery));

View File

@ -12,7 +12,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function() {
(function($) {
'use strict';
var it_is = {1: [1, 2, 4, 5]};
var half = {4: [1, 2, 3, 4]};
@ -78,4 +78,4 @@
}
};
$.fritteli.uhr.register('en', layout);
}());
}(jQuery));

View File

@ -12,7 +12,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function() {
(function($) {
'use strict';
var il_est = {1: [1, 2, 4, 5, 6]};
var et = {8: [1, 2]};
@ -112,4 +112,4 @@
}
};
$.fritteli.uhr.register('fr', layout);
}());
}(jQuery));

View File

@ -12,7 +12,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function() {
(function($) {
'use strict';
var sono_le = {1: [1, 2, 3, 4, 6, 7]};
var e_l = {2: [1, 3, 4]};
@ -77,4 +77,4 @@
}
};
$.fritteli.uhr.register('it', layout);
}());
}(jQuery));