(class_array)
| 45 | 'use strict'; |
| 46 | |
| 47 | var header_helpers = function (class_array) { |
| 48 | var i = class_array.length; |
| 49 | var head = $('head'); |
| 50 | |
| 51 | while (i--) { |
| 52 | if(head.has('.' + class_array[i]).length === 0) { |
| 53 | head.append('<meta class="' + class_array[i] + '" />'); |
| 54 | } |
| 55 | } |
| 56 | }; |
| 57 | |
| 58 | header_helpers([ |
| 59 | 'foundation-mq-small', |